Created
June 13, 2018 06:04
-
-
Save felixjung/cba9b0e7b0d0ff5b9319e2219cc43fcc to your computer and use it in GitHub Desktop.
Next.js testing circuit production build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ThemeProvider } from 'emotion-theming'; | |
import { Text, Heading } from '@sumup/circuit-ui'; | |
import { standard } from '@sumup/circuit-ui/themes'; | |
export default () => <ThemeProvider theme={standard}><div> | |
<Heading>Hello</Heading> | |
<Text>Welcome to Next.js</Text> | |
</div></ThemeProvider> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment