test-cerealkit-deployment
v0.0.8
Published
CerealKit
Downloads
2
Readme
Example App Theme
Usage
import React from 'react';
import { ThemeProvider } from 'styled-components
import { GlobalStyles } from '@natterstefan/ns-theme-js'
import { theme } from './theme'
export const App = () => {
return (
<ThemeProvider theme={theme}>
<GlobalStyles>
<div>Hello World</div>
</ThemeProvider>
);
};