initial commit

This commit is contained in:
yousifpa98
2024-12-19 22:04:41 +01:00
commit c58c287054
11 changed files with 4407 additions and 0 deletions

0
src/App.css Normal file
View File

9
src/App.jsx Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react'
const App = () => {
return (
<div>App</div>
)
}
export default App

0
src/index.css Normal file
View File

10
src/main.jsx Normal file
View File

@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)