summaryrefslogtreecommitdiffstats
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/index.tsx b/src/index.tsx
index a6c4952..037092d 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -3,5 +3,10 @@ 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";
6 7
7ReactDOM.render(<App />, document.getElementById("root")); 8ReactDOM.render((
9 <DarkModeProvider>
10 <App />
11 </DarkModeProvider>
12), document.getElementById("root"));