15 lines
227 B
TypeScript
15 lines
227 B
TypeScript
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
|