Rev 8149 |
|
Comparar con el anterior |
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 15192 |
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 NotificationAlert from '../shared/notification/NotificationAlert'
|
|
|
6 |
import Followers from './followers/Followers'
|
| 7545 |
stevensc |
7 |
|
|
|
8 |
ReactDOM.render(
|
| 15192 |
stevensc |
9 |
<Provider store={store}>
|
|
|
10 |
<Followers backendVars={backendVar} />
|
|
|
11 |
<NotificationAlert />
|
|
|
12 |
</Provider>,
|
|
|
13 |
document.getElementById('company-followers')
|
|
|
14 |
)
|