feat: root

This commit is contained in:
karishmas6
2024-06-21 22:23:35 +05:30
parent 0322d85e5a
commit 544fc5a8aa

14
src/index.tsx Normal file
View File

@@ -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(
<React.StrictMode>
<App />
</React.StrictMode>
);