Rev 5173 | 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 NotificationAlert from '../shared/notification/NotificationAlert'
import Navbar from './templates/default/Navbar'
ReactDOM.render(
<Provider store={store}>
<Navbar navbarVars={navbarVars} labels={MENU_LABELS} />
<NotificationAlert />
</Provider>,
document.getElementById('react_navbar')
)