rsnext/test/integration/app-document-style-fragment/pages/index.js

17 lines
220 B
JavaScript
Raw Normal View History

function Hi() {
return (
<div>
<p>Hello world!</p>
<style jsx>{`
p {
font-size: 16.4px;
}
`}</style>
</div>
)
}
Hi.getInitialProps = () => ({})
export default Hi