diff options
Diffstat (limited to 'src/index.tsx')
| -rw-r--r-- | src/index.tsx | 7 |
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"; | |||
| 3 | import App from "./components/App/App"; | 3 | import App from "./components/App/App"; |
| 4 | 4 | ||
| 5 | import './index.scss'; | 5 | import './index.scss'; |
| 6 | import DarkModeProvider from "./contexts/DarkMode"; | ||
| 6 | 7 | ||
| 7 | ReactDOM.render(<App />, document.getElementById("root")); | 8 | ReactDOM.render(( |
| 9 | <DarkModeProvider> | ||
| 10 | <App /> | ||
| 11 | </DarkModeProvider> | ||
| 12 | ), document.getElementById("root")); | ||
