Skip to content

Commit e3cb165

Browse files
Create main.jsx
Signed-off-by: Abdurhaman Mohammed Ahamed <abdurhamanmohammeda@gmail.com>
1 parent ec35e98 commit e3cb165

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/main.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from 'react'
2+
import ReactDOM from 'react-dom/client'
3+
import App from './App'
4+
import './styles/main.css'
5+
6+
ReactDOM.createRoot(document.getElementById('root')).render(
7+
<React.StrictMode>
8+
<App />
9+
</React.StrictMode>
10+
)

0 commit comments

Comments
 (0)