mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
4 lines
148 B
TypeScript
4 lines
148 B
TypeScript
export function FormError({ children }: { children: React.ReactNode }) {
|
|
return <p className="text-red-500 mt-4 overflow-hidden">{children}</p>
|
|
}
|