From dc91e61725d5ea3837cc9a45534d4826d9b20dd2 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 16 Jan 2026 11:57:16 +0000 Subject: [PATCH] Add src/index.tsx --- src/index.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/index.tsx diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..23b3422 --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,13 @@ +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