Skip to content

Instantly share code, notes, and snippets.

@felixjung
Created June 13, 2018 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felixjung/cba9b0e7b0d0ff5b9319e2219cc43fcc to your computer and use it in GitHub Desktop.
Save felixjung/cba9b0e7b0d0ff5b9319e2219cc43fcc to your computer and use it in GitHub Desktop.
Next.js testing circuit production build
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