"use client";
import { useAuth } from "./AuthProvider";
import { Navigation } from "./Navigation";
export function AppShell({ children }: { children: React.ReactNode }) {
const { user } = useAuth();
if (!user) {
return <>{children}>;
}
return (
<>
{children}
>
);
}