2023-01-17 18:04:42 +00:00
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { State } from './types';
|
|
|
|
|
2023-01-31 16:52:35 +00:00
|
|
|
export const getRegisteredChannels = ( state: State ) => {
|
|
|
|
return state.registeredChannels;
|
2023-01-17 18:04:42 +00:00
|
|
|
};
|
2023-01-19 11:33:51 +00:00
|
|
|
|
|
|
|
export const getRecommendedChannels = ( state: State ) => {
|
|
|
|
return state.recommendedChannels;
|
|
|
|
};
|
2023-02-01 11:02:03 +00:00
|
|
|
|
|
|
|
export const getCampaigns = ( state: State ) => {
|
|
|
|
return state.campaigns;
|
|
|
|
};
|