rsnext/test/integration/amphtml/pages/styled.js

16 lines
277 B
JavaScript
Raw Normal View History

import Foo from '../components/Foo'
import Bar from '../components/Bar'
import { withAmp } from 'next/amp'
export default withAmp(() => (
<div>
<Foo />
<Bar />
<style jsx global>{`
body {
background-color: green;
}
`}</style>
</div>
))