rsnext/examples/amp/components/Layout.js
JJ Kasper cf889d6094 Re-add experimental amp config (#7030)
* Update amphtml and canonical rels, put amp behind
experimental flag again, and update checking for amp query

* Fix typescript error

* Re-add flag to next.config.js
2019-04-15 18:26:23 +09:00

14 lines
257 B
JavaScript

export default function Layout ({ children }) {
return (
<>
{children}
<style jsx global>{`
body {
font-family: Roboto, sans-serif;
padding: 30px;
color: #444;
}
`}</style>
</>
)
}