16 lines
237 B
TypeScript
16 lines
237 B
TypeScript
import { useState } from 'react'
|
|
import reactLogo from './assets/react.svg'
|
|
import viteLogo from '/vite.svg'
|
|
|
|
function App() {
|
|
const [count, setCount] = useState(0)
|
|
|
|
return (
|
|
<div>
|
|
<p>Skibidi</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default App
|