// @flow import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import React from 'react'; import Page from 'component/page'; import Button from 'component/button'; import ClaimTilesDiscover from 'component/claimTilesDiscover'; type Props = {}; type RowDataItem = { title: string, link?: string, help?: any, options?: {}, }; function ChannelsFollowingDiscover(props: Props) { let rowData: Array = []; rowData.push({ title: 'Top Channels On LBRY', link: `/$/${PAGES.DISCOVER}`, options: { pageSize: 12, claimType: 'channel', orderBy: ['trending_global', 'trending_mixed'], }, }); return ( {rowData.map(({ title, link, help, options = {} }) => (

{link ? (

))}
); } export default ChannelsFollowingDiscover;