create-common-library
Version:
CLI for creating reusable, modern common libraries using `create-react-library`, `react-styleguidist` or `storybook`.
31 lines (20 loc) • 702 B
Markdown
# create-common-library
> template for creating reusable common libraries for each project
[](https://www.npmjs.com/package/create-common-library) [](https://standardjs.com)
## Install
```bash
npm install --save create-common-library
```
## Usage
```jsx
import React, { Component } from 'react'
import MyComponent from 'create-common-library'
import 'create-common-library/dist/index.css'
class Example extends Component {
render() {
return <MyComponent />
}
}
```
## License
MIT © [quangvnguyen](https://github.com/quangvnguyen)