|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
12264 |
stevensc |
1 |
import React from 'react'
|
|
|
2 |
import ReactDOM from 'react-dom'
|
|
|
3 |
import { store } from '../../redux/store'
|
|
|
4 |
import { Provider } from 'react-redux'
|
|
|
5 |
import NotificationAlert from '../../shared/notification/NotificationAlert'
|
|
|
6 |
import Routes from './router/Routes'
|
|
|
7 |
|
|
|
8 |
ReactDOM.render(
|
|
|
9 |
<Provider store={store}>
|
|
|
10 |
<Routes backendVars={backendVariables} />
|
|
|
11 |
<NotificationAlert />
|
|
|
12 |
</Provider>,
|
|
|
13 |
document.getElementById('evaluations-evaluations')
|
|
|
14 |
)
|