Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

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