import { Callout, Intent } from '@vegaprotocol/ui-toolkit'; import { useTranslation } from 'react-i18next'; // TODO: Provide a better message export const TrancheNotFound = () => { const { t } = useTranslation(); return (

{t('Tranche not found')}

); };