Skip to content

Instantly share code, notes, and snippets.

@ozluy
Last active August 20, 2019 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozluy/49379ccfcb0d8d39fac32066b06a088c to your computer and use it in GitHub Desktop.
Save ozluy/49379ccfcb0d8d39fac32066b06a088c to your computer and use it in GitHub Desktop.
Rematch Demo
import React from 'react'
import ReactDOM from 'react-dom'
import { Provider } from 'react-redux'
import store from './store'
import Sayac from './Sayac'
ReactDOM.render(
<Provider store={store}>
<Sayac />
</Provider>,
document.getElementById('root')
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment