React standard library: must-have toolbox for any React project
libreact
React standard library—must-have toolbox for any React project.
- LAUNCH STORYBOOK ?
- See documentation
- Most components implement
- Isomorphic - most components work in browser and on server (and some in
react-native
).
Installation
npm i libreact --save
Usage
Library is modular—you can import each component by its name.
import {mock} from 'libreact/lib/mock';
// or
import {mock} from 'libreact/modules/mock';
const MyComponent = mock();