diff options
| author | 2024-08-30 11:19:30 +0200 | |
|---|---|---|
| committer | 2024-08-30 15:33:15 +0200 | |
| commit | 648b804e72d4831e41e02dfd7d6b5a9ac7660b58 (patch) | |
| tree | 34c0e284df0510c868606a01833aa0e57f6678c2 /src/index.tsx | |
| parent | b19c1877d088fbe01bcdea9fbdef282e66ab114f (diff) | |
| download | client-648b804e72d4831e41e02dfd7d6b5a9ac7660b58.tar.gz client-648b804e72d4831e41e02dfd7d6b5a9ac7660b58.tar.bz2 client-648b804e72d4831e41e02dfd7d6b5a9ac7660b58.zip | |
Added ui
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 | ); |
