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 MyProfiles from './my-profiles/MyProfiles'ReactDOM.render(<Provider store={store}><MyProfiles {...backendVars} /><NotificationAlert /></Provider>,document.getElementById('react-my-profiles'))