37 lines
988 B
JavaScript
37 lines
988 B
JavaScript
/**
|
|
* WooCommerce dependencies
|
|
*/
|
|
import { getSetting } from '@woocommerce/wc-admin-settings';
|
|
|
|
/**
|
|
* WooCommerce dependencies
|
|
*/
|
|
import { withOptionsHydration } from '@woocommerce/data';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import './style.scss';
|
|
import InstalledExtensions from './installed-extensions';
|
|
import RecommendedExtensions from '../components/recommended-extensions';
|
|
import KnowledgeBase from '../components/knowledge-base';
|
|
import WelcomeCard from './welcome-card';
|
|
import '../data';
|
|
|
|
const MarketingOverview = () => {
|
|
const allowMarketplaceSuggestions = getSetting( 'allowMarketplaceSuggestions', false );
|
|
|
|
return (
|
|
<div className="woocommerce-marketing-overview">
|
|
<WelcomeCard />
|
|
<InstalledExtensions />
|
|
{ allowMarketplaceSuggestions && <RecommendedExtensions category="marketing" /> }
|
|
<KnowledgeBase category="marketing" />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default withOptionsHydration( {
|
|
...( window.wcSettings.preloadOptions || {} ),
|
|
} )( MarketingOverview );
|