6dc4fc6acd
* Apply prettier fixes for UI * Integrate prettier into linting. Remove duplicate .prettierrc. * Common .eslintignore. Removed reduntant prettier check * Apply prettier on ui script * Correct linting * Duplicate plugin * Common plugin
16 lines
376 B
JavaScript
16 lines
376 B
JavaScript
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import { App } from './App'
|
|
import { BrowserRouter } from 'react-router-dom'
|
|
import { Provider } from 'mobx-react'
|
|
import RootStore from './stores/RootStore'
|
|
|
|
ReactDOM.render(
|
|
<Provider RootStore={RootStore}>
|
|
<BrowserRouter>
|
|
<App />
|
|
</BrowserRouter>
|
|
</Provider>,
|
|
document.getElementById('root')
|
|
)
|