import { Sidebar } from "@/components/layout/sidebar"; import { Topbar } from "@/components/layout/topbar"; import { AlarmProvider } from "@/lib/alarm-context"; import { ThresholdProvider } from "@/lib/threshold-context"; import { ErrorBoundary } from "@/components/error-boundary"; import { Toaster } from "sonner"; export default function DashboardLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }