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