Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 11422 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 11422 Rev 11467
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 { Provider } from 'react-redux'
3
import { Provider } from 'react-redux'
4
import { store } from '../../redux/store'
4
import { store } from '../../redux/store'
-
 
5
import ObjectivesAndGoals from './views/ObjectivesAndGoals' 
5
import NotificationAlert from '../../shared/notification/NotificationAlert'
6
import NotificationAlert from '../../shared/notification/NotificationAlert'
6
import Routes from './router/Routes'
-
 
7
import '../../assets/styles/style-cesa.css'
7
import '../../assets/styles/style-cesa.css'
Línea 8... Línea 8...
8
 
8
 
9
ReactDOM.render(
9
ReactDOM.render(
10
	<Provider store={store}>
10
	<Provider store={store}>
11
		<Routes backendVars={backendVariables} />
11
		<ObjectivesAndGoals {...backendVariables} />
12
		<NotificationAlert />
12
		<NotificationAlert />
13
	</Provider>,
13
	</Provider>,
14
	document.getElementById('objetives_and_goals-planing')
14
	document.getElementById('objetives_and_goals-planing')
15
)
15
)