import type { HTMLAttributes } from "react"; export function Container({ className = "", ...rest }: HTMLAttributes) { return (
); } export function PageHeader({ title, description, actions, }: { title: string; description?: React.ReactNode; actions?: React.ReactNode; }) { return (

{title}

{description ? (

{description}

) : null}
{actions ?
{actions}
: null}
); }