{children}
import { cn } from '@/shared/lib/utils'
import React from 'react'
import { DashboardHeader, type DashboardHeaderProps } from './dashboard-header'
type DashboardPageProps = {
children: React.ReactNode
header?: React.ReactNode | null
headerProps?: DashboardHeaderProps
fullscreen?: boolean
}
export default function DashboardPage({ children, header, headerProps, fullscreen, }: DashboardPageProps) {
const resolvedHeader = header !== undefined
? header
: