open5gs/webui/pages/_document.js
Sukchan Lee bd3ebc5c6f We select styled-components for frontend
Login view is added
2017-05-24 21:19:23 +09:00

25 lines
581 B
JavaScript

import Document, { Head, Main, NextScript } from 'next/document'
import { ServerStyleSheet } from 'styled-components'
export default class MyDocument extends Document {
render () {
const sheet = new ServerStyleSheet()
const main = sheet.collectStyles(<Main />)
const styleTags = sheet.getStyleElement()
return (
<html>
<Head>
<title>My page</title>
{styleTags}
</Head>
<body>
<div className='root'>
{main}
</div>
<NextScript />
</body>
</html>
)
}
}