summaryrefslogtreecommitdiffstats
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx
index d83fd38..a2c18e3 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -7,11 +7,14 @@ import DarkModeProvider from "./contexts/DarkMode";
7 7
8import dayjs from "dayjs"; 8import dayjs from "dayjs";
9import localizedFormat from "dayjs/plugin/localizedFormat"; 9import localizedFormat from "dayjs/plugin/localizedFormat";
10import ConnectionProvider from "~/contexts/Connection";
10dayjs.extend(localizedFormat); 11dayjs.extend(localizedFormat);
11 12
12ReactDOM.render( 13ReactDOM.render(
13 <DarkModeProvider> 14 <DarkModeProvider>
14 <App /> 15 <ConnectionProvider>
16 <App />
17 </ConnectionProvider>
15 </DarkModeProvider>, 18 </DarkModeProvider>,
16 document.getElementById("root") 19 document.getElementById("root")
17); 20);