// @flow import * as React from 'react'; import ClaimPreview from 'component/claimPreview'; type Props = { hideActions?: boolean, channelSubCount?: number, // redux channelUri: string, }; export default function ClaimAuthor(props: Props) { const { channelUri, hideActions, channelSubCount } = props; return channelUri ? ( ) : ( {__('Anonymous')} ); }