diff options
Diffstat (limited to 'app/src/index.tsx')
-rw-r--r-- | app/src/index.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/src/index.tsx b/app/src/index.tsx index 6a6998b..032464f 100644 --- a/app/src/index.tsx +++ b/app/src/index.tsx @@ -1,13 +1,16 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; +import './index.css'; +import App from './App'; import reportWebVitals from './reportWebVitals'; -import { ThreeApp } from './App'; const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement ); root.render( - <ThreeApp /> + <React.StrictMode> + <App /> + </React.StrictMode> ); // If you want to start measuring performance in your app, pass a function |