My React component
{
"react": "*",
"react-dom": "*"
}
Using NPM:
npm install my-react-component
or Yarn:
yarn add my-react-component
In your application root, first import the component styles:
import 'my-react-component/styles.css';
Then import the component in your code:
import MyComponent from 'my-react-component';
export default () => {
return (
<MyComponent />
);
};
Clone the package and run yarn start
Description for MyComponent