Rev 1 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
import React from 'react'
import ReactDOM from 'react-dom'
import { store } from '../../redux/store'
import { Provider } from 'react-redux'
import NotificationAlert from '../../shared/notification/NotificationAlert'
import RequestSent from './request-sent/RequestSent'
ReactDOM.render(
<Provider store={store}>
<RequestSent />
<NotificationAlert />
</Provider>,
document.getElementById('react_companies_i_work_with')
)