From e243f101b3266ed98a1b668562a639408ffe36d7 Mon Sep 17 00:00:00 2001 From: physcik Date: Fri, 10 Apr 2026 20:45:57 +0500 Subject: router setup --- front/src/index.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 front/src/index.tsx (limited to 'front/src/index.tsx') diff --git a/front/src/index.tsx b/front/src/index.tsx new file mode 100644 index 0000000..032464f --- /dev/null +++ b/front/src/index.tsx @@ -0,0 +1,19 @@ +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( + + + +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals(); -- cgit v1.3