Rev 1 |
|
Comparar con el anterior |
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 5795 |
stevensc |
1 |
import React from 'react'
|
|
|
2 |
import ReactDOM from 'react-dom'
|
|
|
3 |
import { store } from '../../redux/store'
|
|
|
4 |
import { Provider } from 'react-redux'
|
| 1 |
www |
5 |
|
| 5795 |
stevensc |
6 |
import ShareModal from '../../dashboard/components/share-modal/ShareModal'
|
|
|
7 |
import NotificationAlert from '../../shared/notification/NotificationAlert'
|
|
|
8 |
import View from './view/View'
|
|
|
9 |
|
| 1 |
www |
10 |
ReactDOM.render(
|
|
|
11 |
<Provider store={store}>
|
| 5795 |
stevensc |
12 |
<View {...backendVars} labels={LABELS} />
|
| 1 |
www |
13 |
<ShareModal />
|
|
|
14 |
<NotificationAlert />
|
|
|
15 |
</Provider>,
|
| 5795 |
stevensc |
16 |
document.getElementById('react_group_view')
|
|
|
17 |
)
|