Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 10425 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 10425 Rev 10436
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import ReactDOM from 'react-dom'
2
import ReactDOM from 'react-dom'
3
import NotificationAlert from '../../shared/notification/NotificationAlert'
3
import NotificationAlert from '../../shared/notification/NotificationAlert'
4
import { Provider } from 'react-redux'
4
import { Provider } from 'react-redux'
5
import { store } from '../../redux/store'
5
import { store } from '../../redux/store'
6
import MainView from './views/MainView'
6
import InterviewRoutes from './router/InterviewRoutes'
Línea 7... Línea 7...
7
 
7
 
8
ReactDOM.render(
8
ReactDOM.render(
9
    <Provider store={store}>
9
    <Provider store={store}>
10
        <MainView {...backendVariables} />
10
        <InterviewRoutes backendVars={backendVariables} />
11
        <NotificationAlert />
11
        <NotificationAlert />
12
    </Provider>,
12
    </Provider>,
13
    document.getElementById('recruitment_and_selection-interview')
13
    document.getElementById('recruitment_and_selection-interview')
14
)
14
)