From 19c9683e2126c68cb9d231293162c756d69c51fb Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Thu, 8 Feb 2018 10:41:16 -0500 Subject: WIP --- frontend/pages/admin/update.js | 7 ++++--- frontend/pages/signup.js | 24 ++++++++++-------------- 2 files changed, 14 insertions(+), 17 deletions(-) (limited to 'frontend/pages') diff --git a/frontend/pages/admin/update.js b/frontend/pages/admin/update.js index ab98add..e9cd745 100644 --- a/frontend/pages/admin/update.js +++ b/frontend/pages/admin/update.js @@ -1,15 +1,16 @@ import { Component } from 'react'; import withData from '../../lib/withData'; import UpdateItem from '../../components/UpdateItem'; +import Page from '../../components/Page'; class Home extends Component { render() { return ( -
+

Update You Item!

-
- ) + + ); } } diff --git a/frontend/pages/signup.js b/frontend/pages/signup.js index f36b16f..1ea3794 100644 --- a/frontend/pages/signup.js +++ b/frontend/pages/signup.js @@ -1,21 +1,17 @@ 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 Signin from '../components/Signin'; import Page from '../components/Page'; +import RequestReset from '../components/RequestReset'; -class SignUpPage extends Component { - render() { - return ( - -

I'm the signup url!

- - -
- ) - } -} +const SignUpPage = () => ( + +

I'm the Sign Up url!

+ + {/* */} + +
+); export default withData(SignUpPage); -- cgit v1.3