Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4248 Rev 4250
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 Navbar from "./navbar/Navbar";
-
 
-
 
6
 
7
import Header from "./templates/linkedin/Header";
7
import Header from "./templates/linkedin/Header";
-
 
8
 
8
// const backendVars2 = backendVars || null;
9
// const backendVars2 = backendVars || null;
-
 
10
 
9
ReactDOM.render(
11
ReactDOM.render(
10
  <Provider store={store}>
12
  <Provider store={store}>
11
    {/* <Navbar navbarVars={navbarVars} /> */}
13
    {/* <Navbar navbarVars={navbarVars} /> */}
12
    <Header {...navbarVars} />
14
    <Header {...navbarVars} />
13
    <NotificationAlert />
15
    <NotificationAlert />
14
  </Provider>,
16
  </Provider>,
15
  document.getElementById("react_navbar_linkedin")
17
  document.getElementById("react_navbar")
16
);
18
);
17
19