Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
276 geraldo 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 SelfEvaluation from './self-evaluation/SelfEvaluation';
7
 
283 geraldo 8
console.log(backendVars);
9
 
276 geraldo 10
ReactDOM.render(
11
  <Provider store={store}>
12
    <SelfEvaluation
13
      backendVars={backendVars}
14
    />
15
    <NotificationAlert />
16
  </Provider>,
17
  document.getElementById("react-self-evaluation")
18
);