import { cn } from "@/lib/utils"; import { auth } from "@/lib/auth"; import BackButton from "@/components/back-button"; import { RunCodeButton } from "@/components/run-code"; import { AvatarButton } from "@/components/avatar-button"; import BotVisibilityToggle from "@/components/bot-visibility-toggle"; interface PlaygroundHeaderProps { className?: string; } export async function PlaygroundHeader({ className, ...props }: PlaygroundHeaderProps) { const session = await auth(); return (
); }