ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
388 Bytes
import React from "react";
interface HeaderContentProps {
maintitle: string;
subtitle?: string;
}
export function HeaderContent({
maintitle,
subtitle = undefined,
}: HeaderContentProps) {
return (
<>
<h3>{maintitle}</h3>
{subtitle && (
<span className="text-neutral-400 text-sm font-light">{subtitle}</span>
)}
</>
);
}