Layout changes.

This commit is contained in:
Mike Cao 2025-03-19 19:50:45 -07:00
parent 16f1b15dee
commit f5c4e1b46e
15 changed files with 71 additions and 1788 deletions

View file

@ -2,7 +2,7 @@ export function ok() {
return Response.json({ ok: true });
}
export function json(data: any) {
export function json(data: any = {}) {
return Response.json(data);
}