import { useTranslation } from 'react-i18next' import { STEP_BY_STEP_TOUR_TARGETS } from '@/app/components/step-by-step-tour/target-registry' import { useDocLink } from '@/context/i18n' export function Empty() { const { t } = useTranslation() const docLink = useDocLink() return (
{t(($) => $['apiBasedExtension.title'], { ns: 'common' })}
{t(($) => $['apiBasedExtension.link'], { ns: 'common' })}
) }