summaryrefslogtreecommitdiff
path: root/app/src/index.tsx
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2025-01-28 07:59:34 +0200
committerZhongheng Liu <z.liu@outlook.com.gr>2025-01-28 07:59:34 +0200
commite23e642996e00d8138ce9035693b59c282babf69 (patch)
treec3fa115b99fa9bf9fd897760756395682051fd9a /app/src/index.tsx
parent8a094040e0f89d76b909d2cb694fbb8661c5025a (diff)
downloadstvnliu.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.tsx7
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