adding app v2 (#943)

This commit is contained in:
Kevin Guevara
2026-04-09 11:25:19 -05:00
committed by GitHub
parent 5cefc39972
commit dc428b2042
93 changed files with 24703 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react';
interface FieldErrorProps {
message?: string;
}
export const FieldError: React.FC<FieldErrorProps> = ({ message }) => {
if (!message) return null;
return (
<span className="font-sans text-[0.8125rem] text-primary mt-1 block">
{message}
</span>
);
};