mirror of
https://github.com/Kingsrook/qqq-frontend-material-dashboard.git
synced 2025-07-17 21:00:45 +00:00
33 lines
984 B
TypeScript
33 lines
984 B
TypeScript
/**
|
|
=========================================================
|
|
* Material Dashboard 2 PRO React TS - v1.0.0
|
|
=========================================================
|
|
|
|
* Product Page: https://www.creative-tim.com/product/material-dashboard-2-pro-react-ts
|
|
* Copyright 2022 Creative Tim (https://www.creative-tim.com)
|
|
|
|
Coded by www.creative-tim.com
|
|
|
|
=========================================================
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
*/
|
|
|
|
import ReactDOM from "react-dom";
|
|
import { BrowserRouter } from "react-router-dom";
|
|
import App from "App";
|
|
|
|
// Material Dashboard 2 PRO React TS Context Provider
|
|
import { MaterialUIControllerProvider } from "context";
|
|
|
|
ReactDOM.render(
|
|
<BrowserRouter>
|
|
<MaterialUIControllerProvider>
|
|
<App />
|
|
</MaterialUIControllerProvider>
|
|
</BrowserRouter>,
|
|
document.getElementById("root"),
|
|
);
|
|
|
|
export * from "components/MDButton";
|