| 2 | import { useTranslation } from 'react-i18next' |
| 3 | |
| 4 | interface LoadingStateProps { |
| 5 | message?: string |
| 6 | } |
| 7 | |
| 8 | function LoadingState({ message = '' }: LoadingStateProps) { |
| 9 | const { t } = useTranslation() |
nothing calls this directly
no outgoing calls
no test coverage detected