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