preact-classless-component

2.0.0 • Public • Published

Preact Classless Component

npm travis Dependency Status devDependency Status

If you use the Preact library, but don't want to use the class syntax because you've read articles by Eric Elliott and others that have lead you to favour object composition over class inheritance, then this utility is for you.

Installation

$ npm install --save preact-classless-component

Usage

/* ES6 Modules */
 
import createComponent from 'preact-classless-component';
 
/* CommonJS */
 
const createComponent = require('preact-classless-component');
 
const Component = createComponent({
    render(props, state) {
        return (
            <div>
                Hello world!
            </div>
        );
    }
});
 

Acknowledgments

Thanks to Jason Miller for his help on debugging this function.

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i preact-classless-component

Weekly Downloads

21

Version

2.0.0

License

MIT

Unpacked Size

6.29 kB

Total Files

8

Last publish

Collaborators

  • laurencedorman