Skip to content

Instantly share code, notes, and snippets.

@Lucifier129
Created June 8, 2018 23:48
Show Gist options
  • Save Lucifier129/bf44e2c5bddf8f0e34180c39e2a34081 to your computer and use it in GitHub Desktop.
Save Lucifier129/bf44e2c5bddf8f0e34180c39e2a34081 to your computer and use it in GitHub Desktop.
import React from 'react'
import { render } from 'react-dom'
import { reactive } from 'rxjs-react'
import { interval } from 'rxjs'
const app = reactive(<h1>{interval(10)}</h1>)
render(app, document.getElementById('root'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment