summaryrefslogtreecommitdiffstats
path: root/frontend/pages/admin
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-02-08 10:41:16 -0500
committerWes Bos <wesbos@gmail.com>2018-02-08 10:41:16 -0500
commit19c9683e2126c68cb9d231293162c756d69c51fb (patch)
tree4679ca2dee47740aa0bf6fe623513c4242e027e6 /frontend/pages/admin
parenteabff7cd396d1f37ceb929e666f082ce57f07919 (diff)
WIP
Diffstat (limited to 'frontend/pages/admin')
-rw-r--r--frontend/pages/admin/update.js7
1 files changed, 4 insertions, 3 deletions
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 (
- <div>
+ <Page>
<p>Update You Item!</p>
<UpdateItem id={this.props.url.query.id} />
- </div>
- )
+ </Page>
+ );
}
}