import { Trans, useTranslation } from 'react-i18next'; type ProductsTabProps = { hasWooCommerce: boolean; }; export function ProductsTab({ hasWooCommerce }: ProductsTabProps) { const { t } = useTranslation(); if (!hasWooCommerce) { return (

{t('products.title')}

{t('products.wooNotAvailable')}

); } return (

{t('products.title')}

}} />

}} />
); }