From 8ed7d5b734ba588fe0570e0e22f21a0fcda13422 Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Wed, 9 May 2018 11:25:33 -0400 Subject: Moving styles to folder --- frontend/pages/_app.js | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 frontend/pages/_app.js (limited to 'frontend/pages/_app.js') diff --git a/frontend/pages/_app.js b/frontend/pages/_app.js new file mode 100644 index 0000000..5cedb5a --- /dev/null +++ b/frontend/pages/_app.js @@ -0,0 +1,33 @@ +import App, { Container } from 'next/app'; +import React from 'react'; +import { withRouter } from 'next/router'; + +// Next.js wraps each Page in an component. This is handy for when you want to persist anything from page to page, or just access a component that is 1 level higher than each page. + +// This code is taken right from the Next.js docs, and then we add the Router to the page props, which is why we need a custom _app.js + +class MyApp extends App { + static async getInitialProps({ Component, router, ctx }) { + let pageProps = {}; + + if (Component.getInitialProps) { + pageProps = await Component.getInitialProps(ctx); + } + + // surface the router on each page + pageProps.router = router; + + return { pageProps }; + } + + render() { + const { Component, pageProps } = this.props; + return ( + + + + ); + } +} + +export default withRouter(MyApp); -- cgit v1.3