Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 11422 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11183 stevensc 1
import React from 'react'
2
import ReactDOM from 'react-dom'
3
import { Provider } from 'react-redux'
4
import { store } from '../../redux/store'
11467 stevensc 5
import ObjectivesAndGoals from './views/ObjectivesAndGoals'
11183 stevensc 6
import NotificationAlert from '../../shared/notification/NotificationAlert'
11422 stevensc 7
import '../../assets/styles/style-cesa.css'
11183 stevensc 8
 
9
ReactDOM.render(
10
	<Provider store={store}>
11467 stevensc 11
		<ObjectivesAndGoals {...backendVariables} />
11183 stevensc 12
		<NotificationAlert />
13
	</Provider>,
14
	document.getElementById('objetives_and_goals-planing')
15
)