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