mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
34 lines
792 B
JavaScript
34 lines
792 B
JavaScript
|
import React from 'react'
|
||
|
import App, { Container } from 'next/app'
|
||
|
import Helmet from 'react-helmet'
|
||
|
|
||
|
export default class MyApp extends App {
|
||
|
static async getInitialProps ({ Component, ctx }) {
|
||
|
let pageProps = {}
|
||
|
|
||
|
if (Component.getInitialProps) {
|
||
|
pageProps = await Component.getInitialProps(ctx)
|
||
|
}
|
||
|
|
||
|
return { pageProps }
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const { Component, pageProps } = this.props
|
||
|
|
||
|
return (
|
||
|
<Container>
|
||
|
<Helmet
|
||
|
htmlAttributes={{ lang: 'en' }}
|
||
|
title='Hello next.js!'
|
||
|
meta={[
|
||
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
||
|
{ property: 'og:title', content: 'Hello next.js!' }
|
||
|
]}
|
||
|
/>
|
||
|
<Component {...pageProps} />
|
||
|
</Container>
|
||
|
)
|
||
|
}
|
||
|
}
|