We get an error can't convert n to string: its [Symbol.toPrimitive] method returned an object
15 lines
328 B
TypeScript
15 lines
328 B
TypeScript
import '@babel/polyfill'
|
|
import App from './containers/App'
|
|
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import store from './store'
|
|
import { Provider } from 'react-redux'
|
|
|
|
const component = (
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>
|
|
)
|
|
|
|
ReactDOM.render(component, document.getElementById('container'))
|