diff options
Diffstat (limited to 'src/index.tsx')
| -rw-r--r-- | src/index.tsx | 5 |
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 | ||
| 8 | import dayjs from "dayjs"; | 8 | import dayjs from "dayjs"; |
| 9 | import localizedFormat from "dayjs/plugin/localizedFormat"; | 9 | import localizedFormat from "dayjs/plugin/localizedFormat"; |
| 10 | import ConnectionProvider from "~/contexts/Connection"; | ||
| 10 | dayjs.extend(localizedFormat); | 11 | dayjs.extend(localizedFormat); |
| 11 | 12 | ||
| 12 | ReactDOM.render( | 13 | ReactDOM.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 | ); |
