From da03c295356db31366d0c4922bd2ff920a2b582a Mon Sep 17 00:00:00 2001 From: Arkon Date: Wed, 14 Jan 2026 13:12:29 +0700 Subject: [PATCH] Add index.tsx --- frontend/src/index.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 frontend/src/index.tsx diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx new file mode 100644 index 0000000..6611732 --- /dev/null +++ b/frontend/src/index.tsx @@ -0,0 +1,14 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import App from './App'; + +const root = ReactDOM.createRoot( + document.getElementById('root') as HTMLElement +); + +root.render( + + + +); \ No newline at end of file