humble beginnings (frontend edition)

This commit is contained in:
wisplite
2025-08-27 02:59:44 -05:00
parent 362d61eb48
commit 2ec1b06716
15 changed files with 3537 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { useState } from 'react'
import reactLogo from './assets/react.svg'
import viteLogo from '/vite.svg'
function App() {
const [count, setCount] = useState(0)
return (
<div>
<h1>Raster</h1>
<p className="text-red-500">Hello World</p>
</div>
)
}
export default App