blockdemy-ui

Modular, highly customizable and stylable React UI Components library built with Styled Components

MIT License

Stars
0
$ yarn add styled-components
$ yarn add blockdemy-ui
import React from 'react'
import BlockdemyUI from 'blockdemy-ui'
import App from './app'

const { BlockdemyUIProvider } = new BlockdemyUI();

const Index = () => (
  <BlockdemyUIProvider>
    <App/>
  </BlockdemyUIProvider>
)

ReactDOM.render(<Index/>, document.getElementById('app'));
import React from 'react'
import Box from 'blockdemy-ui/box'
import Typography from 'blockdemy-ui/typography'

const SomeView = () => (
  <Box bg="primary" p={3}>
    <Typography>Hello world!</Typography>
  </Box>
)

This project is licensed under the MIT License