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