// @flow import React, { useEffect } from 'react'; import ClaimListDiscover from 'component/claimListDiscover'; import * as CS from 'constants/claim_search'; import Nag from 'component/common/nag'; import { parseURI } from 'lbry-redux'; import Button from 'component/button'; import { Form } from 'component/common/form-components/form'; type Props = { subscribedChannels: Array, onContinue: () => void, onBack: () => void, channelSubscribe: (sub: Subscription) => void, }; const LBRYURI = 'lbry://@lbry#3fda836a92faaceedfe398225fb9b2ee2ed1f01a'; function UserChannelFollowIntro(props: Props) { const { subscribedChannels, channelSubscribe, onContinue, onBack } = props; const followingCount = (subscribedChannels && subscribedChannels.length) || 0; // subscribe to lbry useEffect(() => { channelSubscribe({ channelName: parseURI(LBRYURI).claimName, uri: LBRYURI, }); }, []); 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;