import ClientSelect from '@/components/ClientSelect' import { useTranslation } from 'react-i18next' export default function NotFound({ bech32Id }: { bech32Id?: string }) { const { t } = useTranslation() return (
{t('Note not found')}
) }