Simple example of react library with typescript, rollup, jest, storybook, eslint and prettier
npm i -s git+https://github.com/jmorozov/react-library-example.git
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" />;
}
}
MIT © jmorozov