diff options
| author | 2024-08-30 15:47:20 +0200 | |
|---|---|---|
| committer | 2024-08-30 15:47:20 +0200 | |
| commit | fe61544bafafc8b4de78cc71cb641af2dfb7b72d (patch) | |
| tree | 7edff48c1638fcc26915dc1f40982ec2563cf3bf /src/index.tsx | |
| parent | f183536067dc694f37445148c15821f1621f5034 (diff) | |
| parent | 2f2048160fac06e94703bb03eea43185fc01f76c (diff) | |
| download | client-fe61544bafafc8b4de78cc71cb641af2dfb7b72d.tar.gz client-fe61544bafafc8b4de78cc71cb641af2dfb7b72d.tar.bz2 client-fe61544bafafc8b4de78cc71cb641af2dfb7b72d.zip | |
Merge pull request #15 from tomvanderlee/feature/websocketsv2.1.0
Feature/websockets
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 | ); |
