mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 05:07:36 -05:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
export default function ErrorMessage({ errorMsg }: { errorMsg?: string }) {
|
|
if (!errorMsg) return null;
|
|
|
|
return (
|
|
<p className="form-validation-error" role="alert">
|
|
{errorMsg}
|
|
</p>
|
|
);
|
|
}
|