15 lines
381 B
TypeScript
15 lines
381 B
TypeScript
![]() |
import * as React from "react";
|
||
|
import * as ReactDOM from "react-dom";
|
||
|
import Authorization from "./Components/Authorization";
|
||
|
import { ThemeProvider } from "@mui/material";
|
||
|
import theme from "./theme";
|
||
|
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<React.StrictMode>
|
||
|
<ThemeProvider theme={theme}>
|
||
|
<Authorization />
|
||
|
</ThemeProvider>
|
||
|
</React.StrictMode>,
|
||
|
document.getElementById("root")
|
||
|
);
|