Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 11271 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11271 stevensc 1
import React from 'react'
2
import ReactDOM from 'react-dom'
3
import IndustriesView from './view/IndustriesView'
4
import { Provider } from 'react-redux'
5
import { store } from '../../redux/store'
6
import NotificationAlert from '../../shared/notification/NotificationAlert'
5647 stevensc 7
 
8
ReactDOM.render(
11271 stevensc 9
	<Provider store={store}>
15518 stevensc 10
		<IndustriesView {...urlsVar} />
11271 stevensc 11
		<NotificationAlert />
12
	</Provider>,
13
	document.getElementById('industries')
14
)