mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
export function FormErrorMessage({ errorMsg }: { errorMsg?: string }) {
|
|
if (!errorMsg) return null;
|
|
|
|
return (
|
|
<p className="form-validation-error" role="alert">
|
|
{errorMsg}
|
|
</p>
|
|
);
|
|
}
|