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

13 lines
242 B
TypeScript
Raw Normal View History

/**
* Internal dependencies
*/
import { State } from './types';
export const getChannels = ( state: State ) => {
return state.channels;
};
2023-01-19 11:33:51 +00:00
export const getRecommendedChannels = ( state: State ) => {
return state.recommendedChannels;
};