Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 5414
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 { Provider } from "react-redux";
3
import { Provider } from 'react-redux'
4
import { store } from "../../redux/store";
4
import { store } from '../../redux/store'
5
import NotificationAlert from "../../shared/notification/NotificationAlert";
5
import NotificationAlert from '../../shared/notification/NotificationAlert'
6
import View from "./view/View";
6
import View from './view/View'
7
import "../../css/shared/global.scss";
7
import '../../css/shared/global.scss'
Línea 8... Línea 8...
8
 
8
 
9
ReactDOM.render(
9
ReactDOM.render(
-
 
10
  <Provider store={store}>
10
  <Provider store={store}>
11
    <View
-
 
12
      backendVars={backendVars}
-
 
13
      labels={LABELS}
11
    <View backendVars={backendVars} />
14
    />
12
    <NotificationAlert />
15
    <NotificationAlert />
13
  </Provider>,
16
  </Provider>,
14
  document.getElementById("react_my_connections")
17
  document.getElementById('react_my_company')