Rev 283 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from "react";
import ReactDOM from "react-dom";
import { Provider } from "react-redux";
import { store } from "../redux/store";
import NotificationAlert from "../shared/notification/NotificationAlert";
import SelfEvaluation from './self-evaluation/SelfEvaluation';
ReactDOM.render(
<Provider store={store}>
<SelfEvaluation
backendVars={backendVars}
/>
<NotificationAlert />
</Provider>,
document.getElementById("react-self-evaluation")
);