commerce/app/account/component/form-header.tsx
2023-11-15 13:16:34 +03:00

4 lines
116 B
TypeScript

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