Files
sprint/src/Home.tsx
2025-12-13 18:09:10 +00:00

44 lines
1.3 KiB
TypeScript

import { useState } from "react";
import { Button } from "@/components/ui/button";
function Issue({ issue }: { issue: any }) {
return (
<div className="w-sm p-4 border">
[{issue.id}] {issue.title}
</div>
);
}
function Home() {
const [issues, setIssues] = useState([]);
const [serverURL, setServerURL] = useState("http://localhost:3000");
async function getIssues() {
const res = await fetch(`${serverURL}/issues/all`);
const data = await res.json();
setIssues(data);
}
return (
<main className="w-full h-[100vh] flex flex-col items-center justify-center gap-4 p-4">
<h1>Issue Project Manager</h1>
<Button onClick={getIssues} className={""}>
{issues.length > 0 ? "re-fetch issues" : "fetch issues"}
</Button>
{issues.length > 0 && (
<>
{issues.map((issue: any) => (
<Issue key={issue.id} issue={issue} />
))}
<pre className="w-2xl max-h-96 overflow-auto p-4 border bg-">
{JSON.stringify(issues, null, 2)}
</pre>
</>
)}
</main>
);
}
export default Home;