Files
tout-doux/resources/ts/api/comments.ts
T
klemek 92d2e7c3a0
Python Lint CI / ty (push) Successful in 58s
TS Lint / ESLint (push) Successful in 58s
Python Lint CI / ruff (push) Successful in 58s
Python Lint CI / ruff-format-check (push) Successful in 58s
TS Lint / TypeScript (push) Successful in 3m28s
TS Lint / Oxlint (push) Successful in 3m28s
feat: minimum working comments app
2026-07-01 18:19:25 +02:00

15 lines
424 B
TypeScript

import type { Comment } from "@/types";
export async function getComments(): Promise<Comment[]> {
const response = await fetch("/api/comments");
return await response.json();
}
export async function postComment(content: string): Promise<void> {
await fetch("/api/comments", {
method: "POST",
body: JSON.stringify({ content }),
headers: { "Content-Type": "application/json" },
});
}