share is a micro React JS framework with multiple reusable components ... attached with code a react project at example folder to illustrate the use of this frame work to run it simply go to
> cd /example
> npm startto import and use this frame work at your project run
npm install --save shareimport React, { Component } from "react";
import share from "share";
class Example extends Component {
render() {
return <share.MyComponent />;
}
}