summaryrefslogtreecommitdiffstats
path: root/frontend/pages/_app.js
diff options
context:
space:
mode:
authorLuis Alvarez <luisito453@gmail.com>2018-05-15 17:21:12 -0500
committerLuis Alvarez <luisito453@gmail.com>2018-05-15 17:21:12 -0500
commit908fafdde46b3ab5c533b8bf6ef0705169ad9f00 (patch)
treed04c2e33d3cc6aff8d48da0345b91c76655fbda6 /frontend/pages/_app.js
parent81f4f870294d1641bd33aea5b08cf66e37e376e8 (diff)
Moved <Page> to _app
Diffstat (limited to 'frontend/pages/_app.js')
-rw-r--r--frontend/pages/_app.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/pages/_app.js b/frontend/pages/_app.js
index 38c72c3..fce2aa5 100644
--- a/frontend/pages/_app.js
+++ b/frontend/pages/_app.js
@@ -33,7 +33,9 @@ class MyApp extends App {
return (
<Container>
<ApolloProvider client={apollo}>
- <Component {...pageProps} />
+ <Page>
+ <Component {...pageProps} />
+ </Page>
</ApolloProvider>
</Container>
);