Collection of useful React components
libreact
React standard library— a must-have toolbox for any React project.
- LAUNCH STORYBOOK ????
- See documentation
- Most components implement
- Isomorphic – most components work in the browser and on the 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();
Read full article on GitHub
Hi there, thanks a lot for the post. I really enjoy the content I am getting.