import type { ReactNode } from "react"; import { TooltipProvider } from "@/components/ui/tooltip"; import { TopBar } from "@/components/layout/TopBar"; interface AppShellProps { children: ReactNode; } export function AppShell({ children }: AppShellProps) { return (
Skip to main content
{children}
); }