summaryrefslogtreecommitdiffstats
path: root/frontend/pages/add.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-05-15 20:24:30 -0400
committerGitHub <noreply@github.com>2018-05-15 20:24:30 -0400
commit272e84e332df66d340cd3ec18357128569292d47 (patch)
treed5d3f12d7c4dc2adce73c399edb08961d99e1d8e /frontend/pages/add.js
parent3b42102026a00a290bfff5a4c9bd3eb8452ef97d (diff)
parent51cc382a14ad3f368873239b1b642a3cec0470c1 (diff)
Merge pull request #5 from lfades/master
Added <Page> to _app.js
Diffstat (limited to 'frontend/pages/add.js')
-rw-r--r--frontend/pages/add.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/frontend/pages/add.js b/frontend/pages/add.js
index 92d0c18..57a327d 100644
--- a/frontend/pages/add.js
+++ b/frontend/pages/add.js
@@ -1,13 +1,10 @@
-import Page from '../components/Page';
import CreateItem from '../components/CreateItem';
import PleaseSignIn from '../components/PleaseSignIn';
const Sell = () => (
- <Page>
- <PleaseSignIn>
- <CreateItem />
- </PleaseSignIn>
- </Page>
+ <PleaseSignIn>
+ <CreateItem />
+ </PleaseSignIn>
);
export default Sell;