| 2 | import { useTranslation } from '../i18n/context'; |
| 3 | |
| 4 | interface ErrorMessageProps { |
| 5 | message: string; |
| 6 | } |
| 7 | |
| 8 | const ErrorMessage: React.FC<ErrorMessageProps> = ({ message }) => { |
| 9 | const { t } = useTranslation(); |
nothing calls this directly
no outgoing calls
no test coverage detected