summaryrefslogtreecommitdiffstats
path: root/frontend/pages/signup.js
blob: a97d4edd23c86649c93e368e39f4c00ac7fe374d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Component } from 'react';
import withData from '../lib/withData';
import Signup from '../components/Signup';
import Signin from '../components/Signin';
import Page from '../components/Page';
import RequestReset from '../components/RequestReset';

const SignUpPage = () => (
  <Page>
    <Signup />
    <Signin />
    <RequestReset />
  </Page>
);

export default withData(SignUpPage);