mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
20 lines
427 B
JavaScript
20 lines
427 B
JavaScript
import React from 'react'
|
|
import Document, {Head, Main, NextScript} from 'next/document'
|
|
|
|
export default class MyDocument extends Document {
|
|
render () {
|
|
return (
|
|
<html>
|
|
<Head>
|
|
<title>With babel-macros</title>
|
|
<style dangerouslySetInnerHTML={{__html: this.props.css}} />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
}
|