/** * 小节标题 SectionHeader:同前台 section-head 语言。 * 原位于 admin/components.tsx。 */ import type { ReactNode } from 'react' export function SectionHeader({ title, description, action, }: { title: string description?: string action?: ReactNode }) { return (

{title}

{description &&

{description}

}
{action}
) }