Add src/App.tsx

This commit is contained in:
2026-01-16 13:25:07 +00:00
parent e42c141ce4
commit f058c26c66

13
src/App.tsx Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react'
function App() {
return (
<div className="min-h-screen bg-gray-100">
<h1 className="text-3xl font-bold text-center pt-10">
Hello Vite + React + Tailwind!
</h1>
</div>
)
}
export default App