import type React from "react" interface DashboardHeaderProps { heading: string text?: string children?: React.ReactNode } export function DashboardHeader({ heading, text, children }: DashboardHeaderProps) { return (
{text}