import type React from "react" import { cn } from "@/lib/utils" import { Sidebar } from "@/components/sidebar" interface DashboardShellProps extends React.HTMLAttributes {} export function DashboardShell({ children, className, ...props }: DashboardShellProps) { return (
{children}
) }