diff options
Diffstat (limited to 'app/src/index.tsx')
-rw-r--r-- | app/src/index.tsx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/app/src/index.tsx b/app/src/index.tsx index 032464f..6a6998b 100644 --- a/app/src/index.tsx +++ b/app/src/index.tsx @@ -1,16 +1,13 @@ 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( - <React.StrictMode> - <App /> - </React.StrictMode> + <ThreeApp /> ); // If you want to start measuring performance in your app, pass a function |