JSPM

inferno-component

0.7.12
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1367
  • Score
    100M100P100Q106931F
  • License MIT

Provides ES2015 stateful components (with lifecycle events) to Inferno

Package Exports

  • inferno-component

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (inferno-component) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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>;
    }
}