// @flow import React from 'react'; import classnames from 'classnames'; import ChannelThumbnail from 'component/channelThumbnail'; import { parseURI } from 'lbry-redux'; import ChannelBlockButton from 'component/channelBlockButton'; import ChannelMuteButton from 'component/channelMuteButton'; import SubscribeButton from 'component/subscribeButton'; type Props = { uri: string, type: string, }; function AbandonedChannelPreview(props: Props) { const { uri, type } = props; const { channelName } = parseURI(uri); return (
  • {channelName}
    {__(`This channel may have been unpublished.`)}
  • ); } export default AbandonedChannelPreview;