mirror of
https://github.com/vercel/commerce.git
synced 2025-06-30 18:31:21 +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>;
|
|
}
|