0.0.2 • Published 7 years ago

reactify-elm v0.0.2

Weekly downloads
3
License
MIT
Repository
-
Last release
7 years ago

reactify-elm

Reactify-Elm attempts to give an Elm App a React interface.

Install

npm i reactify-elm

Example

Running example here

import reactify from 'reactify-elm'
import { UserContactElm } from './ElmApp'

const UserContactReact = reactify(UserContactElm)

const Wrapper = () => (
  <UserContactReact 
    name="John Johnson"
    email="John@jonson.com"
    onClick={() => console.log("BINGO!")}
  />
)