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