initial commit

This commit is contained in:
victorAnumudu
2024-06-14 18:06:25 +01:00
commit e707f95288
150 changed files with 11018 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { useState } from 'react'
import './App.css'
function App() {
const [count, setCount] = useState(0)
return (
<h1 className="text-3xl font-bold underline">
Hello world!
</h1>
)
}
export default App