0.0.8 • Published 4 years ago

test-cerealkit-deployment v0.0.8

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

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>
  );
};