summaryrefslogtreecommitdiffstats
path: root/frontend/pages/admin
diff options
context:
space:
mode:
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>
+ );
}
}