inferno-component2
v1.3.0-rc.9
Published
Provides ES2015 stateful components (with lifecycle events) to Inferno
Downloads
3
Maintainers
Readme
inferno-component
Inferno package for working with ES2015 stateful components
Install
npm install inferno-component
Contents
- Component
Usage
import Inferno from 'inferno';
import Component from 'inferno-component';
class MyComponent extends Component {
render() {
return <div></div>;
}
}