reactify-elm
v0.0.2
Published
Reactify-Elm attempts to give an Elm App a React interface.
Downloads
4
Readme
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="[email protected]"
onClick={() => console.log("BINGO!")}
/>
)