Re-jok is a React UI component library built with styled-components. It's a collection of components that help you design websites fast and beautiful easily. Now, it's very young, few components or somewhere looks like stupid but we always try to improve and add more components in the shortest time.
- Very lightweight... About 38KB min+gzip
- Easy to customize component
- Easy to customize theme
npm i --save re-jok
import React from 'react'
import { globalConfig, JokTheme, Button } from 're-jok'
globalConfig();
const App = props => (
<JokTheme>
<Button>Hello World</Button>
</JokTheme>
)