import * as React from 'react' export interface DashboardSectionProps { title: string description?: string action?: React.ReactNode children: React.ReactNode className?: string } export function DashboardSection({ title, description, action, children, className = '', }: DashboardSectionProps) { return (
{description}
)}