File size: 234 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
export const config = { amp: true }
const Comp = () => (
<div>
<p>Hello world!</p>
<style jsx>{`
p {
font-size: 16.4px;
}
`}</style>
</div>
)
Comp.getInitialProps = () => ({})
export default Comp
|