// @flow import React from 'react'; import Page from 'component/page'; import TagsSelect from 'component/tagsSelect'; import ClaimList from 'component/claimList'; type Props = { subscribedChannels: Array, }; function FollowingEditPage(props: Props) { const { subscribedChannels } = props; const channelUris = subscribedChannels.map(({ uri }) => uri); return (
{__('Channels You Follow')}} uris={channelUris} />
); } export default FollowingEditPage;