UNPKG

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
# create-common-library > template for creating reusable common libraries for each project [![NPM](https://img.shields.io/npm/v/create-common-library.svg)](https://www.npmjs.com/package/create-common-library) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](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)