NotFound.tsx raw

   1  import ClientSelect from '@/components/ClientSelect'
   2  import { useTranslation } from 'react-i18next'
   3  
   4  export default function NotFound({ bech32Id }: { bech32Id?: string }) {
   5    const { t } = useTranslation()
   6  
   7    return (
   8      <div className="text-muted-foreground w-full h-full flex flex-col items-center justify-center gap-2">
   9        <div>{t('Note not found')}</div>
  10        <ClientSelect originalNoteId={bech32Id} />
  11      </div>
  12    )
  13  }
  14