AutorÃa | 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 View from './default/View'
ReactDOM.render(
<Provider store={store}>
<View {...backendVars} labels={LABELS} />
<NotificationAlert />
</Provider>,
document.getElementById('react_profile_view')
)