create_react_library_demo
v1.0.2
Published
Made with create-react-library
Downloads
2
Readme
my_react_library
Made with create-react-library
Install
npm install --save my_react_library
Usage
import React, { Component } from 'react'
import MyComponent from 'my_react_library'
import 'my_react_library/dist/index.css'
class Example extends Component {
render() {
return <MyComponent />
}
}