Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4440 | Rev 5899 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 4440 Rev 5107
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react'
2
import ReactDOM from 'react-dom'
2
import ReactDOM from 'react-dom'
3
import { Provider } from 'react-redux';
3
import { Provider } from 'react-redux'
4
import { store } from '../../../redux/store'
4
import { store } from '../../../redux/store'
5
import HomeSection from './Home/HomeSection';
5
import HomeSection from './Home/HomeSection'
6
import './Home/Home.scss'
6
import './Home/Home.scss'
7
import NotificationAlert from '../../../shared/notification/NotificationAlert';
7
import NotificationAlert from '../../../shared/notification/NotificationAlert'
Línea 8... Línea 8...
8
 
8
 
9
ReactDOM.render(
9
ReactDOM.render(
10
    <Provider store={store}>
10
    <Provider store={store}>
11
        <HomeSection
11
        <HomeSection
12
            routeTimeline={routeTimeline}
12
            routeTimeline={routeTimeline}
13
            backendVars={backendVars} />
13
            backendVars={backendVars} />
14
        <NotificationAlert />
14
        <NotificationAlert />
15
    </Provider>,
-
 
16
    document.getElementById("react-feeds")
-
 
17
);
15
    </Provider>,
-
 
16
    document.getElementById('react-feeds')
-
 
17
)