summaryrefslogtreecommitdiffstats
path: root/frontend/pages/signup.js
blob: d3b98d711357da98988fe1b117a289cac54f286f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
    <p>I'm the Sign Up url!</p>
    <Signup />
    <Signin />
    <RequestReset />
  </Page>
);

export default withData(SignUpPage);