diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-28 07:59:34 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2025-01-28 07:59:34 +0200 |
commit | e23e642996e00d8138ce9035693b59c282babf69 (patch) | |
tree | c3fa115b99fa9bf9fd897760756395682051fd9a /app/src/index.tsx | |
parent | 8a094040e0f89d76b909d2cb694fbb8661c5025a (diff) | |
download | stvnliu.gitlab.io-merging-3d.tar.gz stvnliu.gitlab.io-merging-3d.tar.bz2 stvnliu.gitlab.io-merging-3d.zip |
feat: merge 3d of old sitemerging-3d
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 |