2020-05-24 18:32:11 +02:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
|
|
|
import App from "./App";
|
2020-06-20 11:13:12 +02:00
|
|
|
import BuisnessLogicProvider from "./businesslogic/BusinessLogicProvider";
|
2020-06-30 22:09:13 +02:00
|
|
|
import { LecturesProvider } from "./businesslogic/LecturesProvider";
|
2020-05-24 18:23:13 +02:00
|
|
|
|
|
|
|
ReactDOM.render(
|
2020-06-17 19:53:30 +02:00
|
|
|
<>
|
2020-06-30 22:09:13 +02:00
|
|
|
<LecturesProvider>
|
2020-06-17 15:19:51 +02:00
|
|
|
<BuisnessLogicProvider>
|
|
|
|
<App />
|
|
|
|
</BuisnessLogicProvider>
|
2020-06-30 22:09:13 +02:00
|
|
|
</LecturesProvider>
|
2020-06-17 19:53:30 +02:00
|
|
|
</>,
|
2020-05-24 18:32:11 +02:00
|
|
|
document.getElementById("root")
|
2020-05-24 18:23:13 +02:00
|
|
|
);
|