woocommerce/plugins/woocommerce-admin/client/marketing/data-multichannel/selectors.ts

24 lines
465 B
TypeScript
Raw Normal View History

/**
* Internal dependencies
*/
import { State } from './types';
export const getRegisteredChannels = ( state: State ) => {
return state.registeredChannels;
};
2023-01-19 11:33:51 +00:00
export const getRecommendedChannels = ( state: State ) => {
return state.recommendedChannels;
};
2023-03-01 19:15:38 +00:00
/**
* Get campaigns from state.
*/
export const getCampaigns = ( state: State ) => {
return state.campaigns;
};
export const getCampaignTypes = ( state: State ) => {
return state.campaignTypes;
};