Rev 11422 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'
import ReactDOM from 'react-dom'
import { Provider } from 'react-redux'
import { store } from '../../redux/store'
import ObjectivesAndGoals from './views/ObjectivesAndGoals'
import NotificationAlert from '../../shared/notification/NotificationAlert'
import '../../assets/styles/style-cesa.css'
ReactDOM.render(
<Provider store={store}>
<ObjectivesAndGoals {...backendVariables} />
<NotificationAlert />
</Provider>,
document.getElementById('objetives_and_goals-planing')
)