taxonomy/components/dashboard-shell.tsx
2022-10-26 17:18:06 +04:00

16 lines
357 B
TypeScript

import * as React from "react"
import { cn } from "@/lib/utils"
interface DashboardShellProps extends React.HTMLAttributes<HTMLDivElement> {}
export function DashboardShell({
children,
className,
...props
}: DashboardShellProps) {
return (
<div className={cn("grid items-start gap-8", className)} {...props}>
{children}
</div>
)
}