|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
11546 |
stevensc |
1 |
import React from 'react'
|
|
|
2 |
import ReactDOM from 'react-dom'
|
|
|
3 |
import { Provider } from 'react-redux'
|
|
|
4 |
import { store } from '../../redux/store'
|
|
|
5 |
import TableView from './views/TableView'
|
|
|
6 |
import NotificationAlert from '../../shared/notification/NotificationAlert'
|
|
|
7 |
import '../../assets/styles/style-cesa.css'
|
|
|
8 |
|
|
|
9 |
ReactDOM.render(
|
|
|
10 |
<Provider store={store}>
|
|
|
11 |
<TableView {...backendVariables} />
|
|
|
12 |
<NotificationAlert />
|
|
|
13 |
</Provider>,
|
|
|
14 |
document.getElementById('task-planing')
|
|
|
15 |
)
|