2025-01-27 15:02:34 +03:00

6 lines
194 B
TypeScript

type Props = { readonly title: string | undefined };
export function PageTitle(props: Readonly<Props>) {
return <span className="h-8 text-lg font-bold tracking-wide">{props?.title}</span>;
}