You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
303 B
17 lines
303 B
6 months ago
|
import { useState } from 'react'
|
||
|
import reactLogo from './assets/react.svg'
|
||
|
import viteLogo from '/vite.svg'
|
||
|
import './App.css'
|
||
|
|
||
|
function App() {
|
||
|
const [count, setCount] = useState(0)
|
||
|
|
||
|
return (
|
||
|
<h1 className="text-3xl font-bold underline">
|
||
|
Hello world!
|
||
|
</h1>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default App
|