diff options
| author | Wes Bos <wesbos@gmail.com> | 2018-05-17 16:41:32 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2018-05-17 16:41:32 -0400 |
| commit | 51f593384f1325b78a263d0d870d162236ed28d2 (patch) | |
| tree | dbd4d9c10d0ea55e81ce870676104f71f53c5f56 /frontend/pages/update.js | |
| parent | f2e0263ee2d32b156a7a3b14770b897801c87553 (diff) | |
updates
Diffstat (limited to 'frontend/pages/update.js')
| -rw-r--r-- | frontend/pages/update.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/frontend/pages/update.js b/frontend/pages/update.js index 7d8deda..7a8630d 100644 --- a/frontend/pages/update.js +++ b/frontend/pages/update.js @@ -1,16 +1,13 @@ import { Component } from 'react'; 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.query.id} /> - </PleaseSignIn> - </Page> + <PleaseSignIn> + <UpdateItem id={this.props.query.id} /> + </PleaseSignIn> ); } } |
