48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import { getSetting } from '@woocommerce/wc-admin-settings';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import './style.scss';
|
|
import RecommendedExtensions from '../components/recommended-extensions';
|
|
import KnowledgeBase from '../components/knowledge-base';
|
|
import '../data';
|
|
|
|
const CouponsOverview = () => {
|
|
const allowMarketplaceSuggestions = getSetting(
|
|
'allowMarketplaceSuggestions',
|
|
false
|
|
);
|
|
|
|
return (
|
|
<div className="woocommerce-marketing-coupons">
|
|
{ allowMarketplaceSuggestions && (
|
|
<RecommendedExtensions
|
|
title={ __(
|
|
'Recommended coupon extensions',
|
|
'woocommerce-admin'
|
|
) }
|
|
description={ __(
|
|
'Take your coupon marketing to the next level with our recommended coupon extensions.',
|
|
'woocommerce-admin'
|
|
) }
|
|
category="coupons"
|
|
/>
|
|
) }
|
|
<KnowledgeBase
|
|
category="coupons"
|
|
description={ __(
|
|
'Learn the ins and outs of successful coupon marketing from the experts at WooCommerce.',
|
|
'woocommerce-admin'
|
|
) }
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CouponsOverview;
|