Start repository

This commit is contained in:
tips-of-mine
2025-05-31 10:26:04 +02:00
commit 486d93a4f0
30 changed files with 5788 additions and 0 deletions

11
src/App.tsx Normal file
View File

@@ -0,0 +1,11 @@
import React from 'react';
function App() {
return (
<div className="min-h-screen bg-gray-100 flex items-center justify-center">
<p>Start prompting (or editing) to see magic happen :)</p>
</div>
);
}
export default App;