Fix App.tsx

This commit is contained in:
Rayan 2025-02-16 04:19:58 -05:00
parent 66c6aa3442
commit 14b2d473ea

View file

@ -1,7 +1,11 @@
import { useState } from 'react'
function App() { function App() {
const [name, setName] = useState('')
return ( return (
<> <>
<p>Hello</p> <p></p>
</> </>
) )
} }