Rev 4250 |
|
Comparar con el anterior |
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 4250 |
stevensc |
1 |
import React from "react";
|
|
|
2 |
import ReactDOM from "react-dom";
|
|
|
3 |
import { Provider } from "react-redux";
|
| 4263 |
stevensc |
4 |
import { store } from "../../../../redux/store";
|
|
|
5 |
import NotificationAlert from "../../../../shared/notification/NotificationAlert";
|
| 4250 |
stevensc |
6 |
import PublicNavbar from "./PublicNavbar";
|
|
|
7 |
|
|
|
8 |
ReactDOM.render(
|
|
|
9 |
<Provider store={store}>
|
|
|
10 |
<PublicNavbar />
|
|
|
11 |
<NotificationAlert />
|
|
|
12 |
</Provider>,
|
|
|
13 |
document.getElementById("public-header")
|
|
|
14 |
);
|