0.8.0 • Published 8 years ago

meiosis-inferno v0.8.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Meiosis-Inferno

Meiosis-Inferno is a Meiosis renderer for Inferno.

You can install it with npm:

npm i --save meiosis-inferno

Then use it along with Meiosis:

import { createComponent, run } from "meiosis";
import { renderer } from "meiosis-inferno";

const Main = createComponent({...});
run({ renderer: renderer().intoId(document, "app"), rootComponent: Main });

You can also download the JavaScript file from the Meiosis builds and add it to your page with a plain <script> tag. In that case it will be available as the meiosisInferno global variable.

The todo-list example uses Meiosis-Inferno.

--

Meiosis is developed by foxdonut (@foxdonut00) and is released under the MIT license.