|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
www |
1 |
import React from "react";
|
|
|
2 |
import ReactDOM from "react-dom";
|
|
|
3 |
import { Provider } from "react-redux";
|
|
|
4 |
import { BrowserRouter } from "react-router-dom";
|
|
|
5 |
import { store } from "../../redux/store";
|
|
|
6 |
import NotificationAlert from "../../shared/notification/NotificationAlert";
|
|
|
7 |
import SigninSection from "./signin-section/SigninSection";
|
|
|
8 |
|
|
|
9 |
ReactDOM.render(
|
|
|
10 |
<Provider store={store}>
|
|
|
11 |
<BrowserRouter>
|
|
|
12 |
<SigninSection backendVars={backendVars} />
|
|
|
13 |
<NotificationAlert />
|
|
|
14 |
</BrowserRouter>
|
|
|
15 |
</Provider>,
|
|
|
16 |
document.getElementById("react-login")
|
|
|
17 |
);
|