diff options
| author | 2022-02-12 11:33:52 +0100 | |
|---|---|---|
| committer | 2022-02-12 11:33:52 +0100 | |
| commit | 871a85d9343cf49646d13dc455c062efadcb959a (patch) | |
| tree | 7d36b14b237719901d71d58c88f74b87b875ee61 /src/index.tsx | |
| parent | 7c48533571e9f9d3731a59433a56cc8d6e008123 (diff) | |
| download | client-1.3.0.tar.gz client-1.3.0.tar.bz2 client-1.3.0.zip | |
Beatified codev1.3.0
Diffstat (limited to 'src/index.tsx')
| -rw-r--r-- | src/index.tsx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/index.tsx b/src/index.tsx index 037092d..a9fdbd7 100644 --- a/src/index.tsx +++ b/src/index.tsx | |||
| @@ -2,11 +2,12 @@ import * as React from "react"; | |||
| 2 | import * as ReactDOM from "react-dom"; | 2 | import * as ReactDOM from "react-dom"; |
| 3 | import App from "./components/App/App"; | 3 | import App from "./components/App/App"; |
| 4 | 4 | ||
| 5 | import './index.scss'; | 5 | import "./index.scss"; |
| 6 | import DarkModeProvider from "./contexts/DarkMode"; | 6 | import DarkModeProvider from "./contexts/DarkMode"; |
| 7 | 7 | ||
| 8 | ReactDOM.render(( | 8 | ReactDOM.render( |
| 9 | <DarkModeProvider> | 9 | <DarkModeProvider> |
| 10 | <App /> | 10 | <App /> |
| 11 | </DarkModeProvider> | 11 | </DarkModeProvider>, |
| 12 | ), document.getElementById("root")); | 12 | document.getElementById("root") |
| 13 | ); | ||
