summaryrefslogtreecommitdiffstats
path: root/pages/signup.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2017-08-25 09:33:53 -0400
committerWes Bos <wesbos@gmail.com>2017-08-25 09:33:53 -0400
commit7af74ff8988961c988f03c95961b70c2918521ae (patch)
treed73cd0dd94751b76595b7febcae4162811c2040b /pages/signup.js
parent416c2cbae0e69b724876d232bf813eefd7550174 (diff)
yay
Diffstat (limited to 'pages/signup.js')
-rw-r--r--pages/signup.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/pages/signup.js b/pages/signup.js
new file mode 100644
index 0000000..a03f650
--- /dev/null
+++ b/pages/signup.js
@@ -0,0 +1,21 @@
+import { Component } from 'react';
+import withData from '../lib/withData';
+import Items from '../components/Items';
+import CreateItem from '../components/CreateItem';
+import Signup from '../components/Signup';
+import LoginAuth0 from '../components/LoginAuth0';
+import Page from '../components/Page';
+
+class Home extends Component {
+ render() {
+ return (
+ <Page>
+ <p>I'm the signup url!</p>
+ <LoginAuth0></LoginAuth0>
+ <Signup />
+ </Page>
+ )
+ }
+}
+
+export default withData(Home);