1.0.10 • Published 4 years ago

react-library-example v1.0.10

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

react-library-example

Simple example of react library with typescript, rollup, jest, storybook, eslint and prettier

Install

npm i -s git+https://github.com/jmorozov/react-library-example.git

Usage

import * as React from 'react';
import 'react-library-example/dist/index.css';
import { ExampleComponent } from 'react-library-example';

class Example extends React.Component {
   render() {
      return <ExampleComponent text="Test" />;
   }
}

License

MIT © jmorozov