commerce/app/account/component/FormHeader.tsx
2023-11-15 12:36:17 +03:00

4 lines
116 B
TypeScript

export default function FormHeader({ title }: { title: string }) {
return <h1 className="text-4xl">{title}</h1>;
}