Rev 5401 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'
import ReactDOM from 'react-dom'
import { store } from '../../redux/store'
import { Provider } from 'react-redux'
import HomeSection from './home-section/HomeSection'
import NotificationAlert from '../../shared/notification/NotificationAlert'
ReactDOM.render(
<Provider store={store}>
<HomeSection
routeTimeline={routeTimeline}
routeDailyPulse={routeDailyPulse}
backendVars={backendVars}
labels={LABELS}
/>
<NotificationAlert />
</Provider>,
document.getElementById('react-feeds')
)