@whatsup/react
v0.3.1
Published
React component to connect a Whats Up application
Downloads
2
Readme
Install
npm i @whatsup/react
Usage
import React from 'react'
import { render } from 'react-dom'
import { fractal } from 'whatsup'
import { WhatsUp } from '@whatsup/react'
const App = fractal(function* () {
while (true) {
yield <div>Hello world</div>
}
})
render(<WhatsUp stream={App} />, document.getElementById('app'))