1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-antd-mobile/pages/_app.js
Henrik Wenz dccbc1ea35 Update examples/with-antd-mobile (#5495)
* Update examples/with-antd-mobile

- Reduced noise
- Simplify setup

* Create more more complex example
2018-11-02 19:50:30 +01:00

25 lines
698 B
JavaScript

import React from 'react'
import App, { Container } from 'next/app'
import Head from 'next/head'
export default class CustomApp extends App {
render () {
const { Component, pageProps } = this.props
return (
<Container>
<Head>
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no' />
<style global jsx>{`
html,
body {
font-family: "Helvetica Neue", "Hiragino Sans GB", Helvetica, "Microsoft YaHei", Arial;
margin: 0;
}
`}</style>
</Head>
<Component {...pageProps} />
</Container>
)
}
}