Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 13044 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
13044 nelberth 1
import React from "react";
2
import ReactDOM from "react-dom";
3
import { Provider } from "react-redux";
4
import { store } from "../redux/store";
5
import NotificationAlert from "../shared/notification/NotificationAlert";
6
import Inmail from './inmail'
7
 
8
ReactDOM.render(
9
  <Provider store={store}>
10
    <Inmail
13045 nelberth 11
      backendVars={inMailVars}
13044 nelberth 12
    />
13
    <NotificationAlert />
14
  </Provider>,
15
  document.getElementById("react-inmail")
16
);