mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
export default function FormHeader({ title }: { title: string }) {
|
|
return <h1 className="text-4xl">{title}</h1>;
|
|
}
|