reflex-react-driver [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url]
October 20, 2015 ยท View on GitHub
This is a reflex application view driver that uses react for rendering into a DOM.
Usage
import * as App from "./app"
import {start} from "reflex"
import {Renderer} from "reflex-react-driver"
const app = start({
initial: App.initialize(),
update: App.update,
view: App.view
})
app.view.subscribe(new Renderer({target: document.body}))