rsnext/test/integration/styled-jsx-module/app/pages/amp.js
JJ Kasper 564eac4746
Fix styled-jsx not rendering when used in node_modules (#7697)
* Don't transpile styled-jsx in server mode

* Add test fo styled-jsx-module

* Add styled-jsx as dependency of next-server
2019-06-29 15:42:07 -07:00

12 lines
189 B
JavaScript

import { Button } from 'my-comps/button'
export const config = { amp: true }
const Index = () => (
<>
<p>Hello world</p>
<Button>Click me</Button>
</>
)
export default Index