diff options
| author | Wes Bos <wesbos@gmail.com> | 2018-05-15 16:03:58 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2018-05-15 16:03:58 -0400 |
| commit | 3b42102026a00a290bfff5a4c9bd3eb8452ef97d (patch) | |
| tree | ae73997e78c546b0f02795e99f0312e0db265697 /frontend/pages/add.js | |
| parent | a2f7c511badb6da1f1b7812ea4636ee82a9feb3d (diff) | |
what
Diffstat (limited to 'frontend/pages/add.js')
| -rw-r--r-- | frontend/pages/add.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/frontend/pages/add.js b/frontend/pages/add.js new file mode 100644 index 0000000..92d0c18 --- /dev/null +++ b/frontend/pages/add.js @@ -0,0 +1,13 @@ +import Page from '../components/Page'; +import CreateItem from '../components/CreateItem'; +import PleaseSignIn from '../components/PleaseSignIn'; + +const Sell = () => ( + <Page> + <PleaseSignIn> + <CreateItem /> + </PleaseSignIn> + </Page> +); + +export default Sell; |
