export function FormErrorMessage({ errorMsg }: { errorMsg?: string }) { if (!errorMsg) return null; return (

{errorMsg}

); }