summaryrefslogtreecommitdiffstats
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx6
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";
3import App from "~/components/App/App"; 3import App from "~/components/App/App";
4 4
5import "~/index.scss"; 5import "~/index.scss";
6import DarkModeProvider from "./contexts/DarkMode"; 6import SettingsProvider from "./contexts/Settings";
7 7
8import dayjs from "dayjs"; 8import dayjs from "dayjs";
9import localizedFormat from "dayjs/plugin/localizedFormat"; 9import localizedFormat from "dayjs/plugin/localizedFormat";
@@ -11,10 +11,10 @@ import ConnectionProvider from "~/contexts/Connection";
11dayjs.extend(localizedFormat); 11dayjs.extend(localizedFormat);
12 12
13ReactDOM.render( 13ReactDOM.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);