// @flow import React from 'react'; import ClaimListDiscover from 'component/claimListDiscover'; import { TYPE_TOP, TIME_ALL } from 'component/claimListDiscover/view'; import Nag from 'component/common/nag'; type Props = { subscribedChannels: Array, onContinue: () => void, }; function UserChannelFollowIntro(props: Props) { const { subscribedChannels, onContinue } = props; const followingCount = (subscribedChannels && subscribedChannels.length) || 0; return (

{__('Find Channels to Follow')}

{__( 'LBRY works better if you find and follow at least 5 creators you like. You can also block channels you never want to see.' )}

{followingCount > 0 && ( )}
); } export default UserChannelFollowIntro;