srinuksv commited on
Commit
36db8a9
·
verified ·
1 Parent(s): 5607bd5

Create index.js

Browse files
Files changed (1) hide show
  1. frontend/src/index.js +6 -0
frontend/src/index.js ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import React from 'react';
2
+ import ReactDOM from 'react-dom/client';
3
+ import App from './App';
4
+
5
+ const root = ReactDOM.createRoot(document.getElementById('root'));
6
+ root.render(<App />);