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

13 lines
242 B
TypeScript

/**
* Internal dependencies
*/
import { State } from './types';
export const getChannels = ( state: State ) => {
return state.channels;
};
export const getRecommendedChannels = ( state: State ) => {
return state.recommendedChannels;
};