import type { ReactNode } from "react"; import { ResourceLinks } from "./resource-links"; interface AuthShellProps { children: ReactNode; } export function AuthShell({ children }: AuthShellProps) { return (
00 FARMJS / Auth starter
{children}
); }