aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorNeil Kollack <nkollack@gmail.com>2022-03-24 22:02:23 -0500
committerNeil Kollack <nkollack@gmail.com>2022-03-24 22:02:23 -0500
commitf2c17865777acb16f20094bb9d917e1169971aed (patch)
treedfc3bcc6a87554436baa8bc87521f87e54298a52 /src/index.js
parent2a4cf89020f7baf2ef22d150b3afc24eba7df9cc (diff)
feat: dark mode toggle + Terminal as Component
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/index.js b/src/index.js
index ef2edf8..8026e8e 100644
--- a/src/index.js
+++ b/src/index.js
@@ -3,11 +3,14 @@ import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
+import ThemeContextWrapper from './theme';
ReactDOM.render(
- <React.StrictMode>
- <App />
- </React.StrictMode>,
+ <ThemeContextWrapper>
+ <React.StrictMode>
+ <App />
+ </React.StrictMode>
+ </ThemeContextWrapper>,
document.getElementById('root')
);