diff options
| author | 2024-09-04 10:27:24 +0200 | |
|---|---|---|
| committer | 2024-09-04 10:27:24 +0200 | |
| commit | a087494f6809a7a8ea8e6c27a105d8c8f0f3839e (patch) | |
| tree | 617c0dbd168d6e340923dd17b07cc8239787e196 /src/index.tsx | |
| parent | fe61544bafafc8b4de78cc71cb641af2dfb7b72d (diff) | |
| download | client-a087494f6809a7a8ea8e6c27a105d8c8f0f3839e.tar.gz client-a087494f6809a7a8ea8e6c27a105d8c8f0f3839e.tar.bz2 client-a087494f6809a7a8ea8e6c27a105d8c8f0f3839e.zip | |
Updated the libraries
Diffstat (limited to 'src/index.tsx')
| -rw-r--r-- | src/index.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.tsx b/src/index.tsx index a2c18e3..c1a4211 100644 --- a/src/index.tsx +++ b/src/index.tsx | |||
| @@ -3,7 +3,7 @@ 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 SettingsProvider from "./contexts/Settings"; |
| 7 | 7 | ||
| 8 | import dayjs from "dayjs"; | 8 | import dayjs from "dayjs"; |
| 9 | import localizedFormat from "dayjs/plugin/localizedFormat"; | 9 | import localizedFormat from "dayjs/plugin/localizedFormat"; |
| @@ -11,10 +11,10 @@ import ConnectionProvider from "~/contexts/Connection"; | |||
| 11 | dayjs.extend(localizedFormat); | 11 | dayjs.extend(localizedFormat); |
| 12 | 12 | ||
| 13 | ReactDOM.render( | 13 | ReactDOM.render( |
| 14 | <DarkModeProvider> | 14 | <SettingsProvider> |
| 15 | <ConnectionProvider> | 15 | <ConnectionProvider> |
| 16 | <App /> | 16 | <App /> |
| 17 | </ConnectionProvider> | 17 | </ConnectionProvider> |
| 18 | </DarkModeProvider>, | 18 | </SettingsProvider>, |
| 19 | document.getElementById("root") | 19 | document.getElementById("root") |
| 20 | ); | 20 | ); |
