// @flow import React from 'react'; import ClaimList from 'component/claimList'; import Page from 'component/page'; type Props = { uris: Array, }; function ListBlocked(props: Props) { const { uris } = props; return ( {uris && uris.length ? (
{__('Your Blocked Channels')}} persistedStorageKey="block-list-published" uris={uris} defaultSort showHiddenByUser />
) : (

{__('It looks like you have no blocked channels.')}

)}
); } export default ListBlocked;