import { cn } from "@/lib/utils"; import { RunCode } from "@/components/run-code"; import BackButton from "@/components/back-button"; import { AvatarButton } from "@/components/avatar-button"; interface PlaygroundHeaderProps { className?: string; } export function PlaygroundHeader({ className, ...props }: PlaygroundHeaderProps) { return (
); }