import { ReactNode } from "react"; import { cn } from "@/lib/utils"; interface DashboardLayoutProps { header: ReactNode; chart: ReactNode; orderBook: ReactNode; orderForm: ReactNode; className?: string; } export function DashboardLayout({ header, chart, orderBook, orderForm, className, }: DashboardLayoutProps) { return (