feat: wire auth and CRUD UI to APIs

This commit is contained in:
2026-07-01 06:29:18 -07:00
parent 914f74c5cc
commit 86a8f54725
10 changed files with 1119 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
type AuthGateProps = {
children: React.ReactNode;
};
export function AuthGate({ children }: AuthGateProps): React.ReactElement {
return <>{children}</>;
}