From 1cfc19fc638ea7fa133cfdcc9e0604864ab16758 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 16 Jan 2026 12:52:52 +0000 Subject: [PATCH] Add src/index.tsx --- src/index.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/index.tsx diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..88b4f64 --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,16 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +const root = ReactDOM.createRoot( + document.getElementById('root') as HTMLElement +); +root.render( + + + +); + +reportWebVitals();