dark hihi

This commit is contained in:
2023-03-22 16:18:31 +01:00
parent 157c5e8ffa
commit 34acfc65c3
7 changed files with 34 additions and 8 deletions

View File

@@ -1,12 +1,15 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import ThemeContextProvider from "./utils/contexts/ThemeContext";
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<React.StrictMode>
<App />
<ThemeContextProvider>
<App />
</ThemeContextProvider>
</React.StrictMode>
);