summaryrefslogtreecommitdiffstats
path: root/frontend/pages/admin
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-04-12 16:31:01 -0400
committerWes Bos <wesbos@gmail.com>2018-04-12 16:31:01 -0400
commit97b6de6aa437f7a913a33b9e6aa18a919faf2caf (patch)
tree431e12a535baf1d2ad59601ee7c5e8084ae7a263 /frontend/pages/admin
parentd22616d5a675f5a381c741784333151255713b45 (diff)
a whole bunch of things that should be in their own commits
Diffstat (limited to 'frontend/pages/admin')
-rw-r--r--frontend/pages/admin/update.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/frontend/pages/admin/update.js b/frontend/pages/admin/update.js
deleted file mode 100644
index 2f445d7..0000000
--- a/frontend/pages/admin/update.js
+++ /dev/null
@@ -1,19 +0,0 @@
-import { Component } from 'react';
-import withData from '../../lib/withData';
-import UpdateItem from '../../components/UpdateItem';
-import Page from '../../components/Page';
-import PleaseSignIn from '../../components/PleaseSignIn';
-
-class Home extends Component {
- render() {
- return (
- <Page>
- <PleaseSignIn>
- <UpdateItem id={this.props.url.query.id} />
- </PleaseSignIn>
- </Page>
- );
- }
-}
-
-export default withData(Home);