summaryrefslogtreecommitdiffstats
path: root/finished-application/frontend/pages/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'finished-application/frontend/pages/index.js')
-rw-r--r--finished-application/frontend/pages/index.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/finished-application/frontend/pages/index.js b/finished-application/frontend/pages/index.js
new file mode 100644
index 0000000..d316108
--- /dev/null
+++ b/finished-application/frontend/pages/index.js
@@ -0,0 +1,7 @@
+import Items from '../components/Items';
+
+const Home = props => (
+ <Items page={parseInt(props.query.page) || 1} />
+)
+
+export default Home;