Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 5647 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5647 Rev 11271
Línea 1... Línea 1...
1
import React from "react";
1
import React from 'react'
2
import ReactDOM from "react-dom";
2
import ReactDOM from 'react-dom'
3
import IndustriesView from "./view/IndustriesView";
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'
Línea 4... Línea 7...
4
 
7
 
5
ReactDOM.render(
-
 
6
    <IndustriesView
-
 
7
        urlsVar={urlsVar}
-
 
8
    />,
-
 
9
    document.getElementById("industries")
-
 
10
);
8
ReactDOM.render(
-
 
9
	<Provider store={store}>
-
 
10
		<IndustriesView urlsVar={urlsVar} />
-
 
11
		<NotificationAlert />
-
 
12
	</Provider>,
-
 
13
	document.getElementById('industries')
-
 
14
)
11
15