// @flow import React from 'react'; import ClaimList from 'component/claimList'; import Page from 'component/page'; import Card from 'component/common/card'; type Props = { uris: Array, }; function ListBlocked(props: Props) { const { uris } = props; return ( {uris && uris.length ? ( } /> ) : (

{__('You aren’t blocking any channels')}

{__('When you block a channel, all content from that channel will be hidden.')}

)}
); } export default ListBlocked;