akborana4 commited on
Commit
52036e2
·
verified ·
1 Parent(s): 4e73027

Create src/main.jsx

Browse files
Files changed (1) hide show
  1. client/src/main.jsx +5 -0
client/src/main.jsx ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import React from 'react';
2
+ import { createRoot } from 'react-dom/client';
3
+ import App from './App.jsx';
4
+
5
+ createRoot(document.getElementById('root')).render(<App />);