summaryrefslogtreecommitdiffstats
path: root/frontend/pages/update.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-05-17 16:41:32 -0400
committerWes Bos <wesbos@gmail.com>2018-05-17 16:41:32 -0400
commit51f593384f1325b78a263d0d870d162236ed28d2 (patch)
treedbd4d9c10d0ea55e81ce870676104f71f53c5f56 /frontend/pages/update.js
parentf2e0263ee2d32b156a7a3b14770b897801c87553 (diff)
updates
Diffstat (limited to 'frontend/pages/update.js')
-rw-r--r--frontend/pages/update.js9
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>
);
}
}