From 97b6de6aa437f7a913a33b9e6aa18a919faf2caf Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Thu, 12 Apr 2018 16:31:01 -0400 Subject: a whole bunch of things that should be in their own commits --- frontend/pages/update.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 frontend/pages/update.js (limited to 'frontend/pages/update.js') diff --git a/frontend/pages/update.js b/frontend/pages/update.js new file mode 100644 index 0000000..b30cd1c --- /dev/null +++ b/frontend/pages/update.js @@ -0,0 +1,19 @@ +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 ( + + + + + + ); + } +} + +export default withData(Home); -- cgit v1.3