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 PeopleViewedProfile from './people-viewed-profile/PeopleViewedProfile'ReactDOM.render(<Provider store={store}><PeopleViewedProfile /><NotificationAlert /></Provider>,document.getElementById('react_people_viewed_profile'))