summaryrefslogtreecommitdiffstats
path: root/frontend/pages/reset.js
blob: 2b4008a78b45416bafc81837441404c20a5eb955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import withData from '../lib/withData';
import Page from '../components/Page';
import Reset from '../components/Reset';

const ResetPage = props => (
  <Page>
    <h2>So you wanna reset your password?</h2>
    <Reset resetToken={props.router.query.resetToken} />
  </Page>
);

export default withData(ResetPage);