// @flow // import * as ICONS from 'constants/icons'; // import * as PAGES from 'constants/pages'; import * as CS from 'constants/claim_search'; import React from 'react'; import Page from 'component/page'; // import Button from 'component/button'; import ClaimListDiscover from 'component/claimListDiscover'; // import { toCapitalCase } from 'util/string'; import { CUSTOM_HOMEPAGE } from 'config'; const MORE_CHANNELS_ANCHOR = 'MoreChannels'; type Props = { followedTags: Array, subscribedChannels: Array, blockedChannels: Array, homepageData: any, }; function ChannelsFollowingDiscover(props: Props) { const { followedTags, subscribedChannels, blockedChannels, homepageData } = props; const { PRIMARY_CONTENT } = homepageData; let channelIds; if (PRIMARY_CONTENT && CUSTOM_HOMEPAGE) { channelIds = PRIMARY_CONTENT.channelIds; } let rowData: Array = []; const notChannels = subscribedChannels .map(({ uri }) => uri) .concat(blockedChannels) .map((uri) => uri.split('#')[1]); return ( {__('Moon cheese is an acquired taste')}} /> ); } export default ChannelsFollowingDiscover;