chore: init

This commit is contained in:
2025-10-17 12:30:30 +03:00
commit 0cc9367327
22 changed files with 752 additions and 0 deletions

16
frontend/src/App.tsx Normal file
View File

@@ -0,0 +1,16 @@
import { APITester } from "./APITester";
import "./index.css";
export function App() {
return (
<div className="max-w-7xl mx-auto p-8 text-center relative z-10">
<div className="flex justify-center items-center gap-8 mb-8">
</div>
<h1 className="text-5xl font-bold my-4 leading-tight">React + Gin</h1>
<APITester />
</div>
);
}
export default App;