import type { FC } from 'react'; import { FormattedMessage } from 'react-intl'; import { TimelineHint } from '@/mastodon/components/timeline_hint'; export const RemoteHint: FC<{ domain?: string; url: string }> = ({ domain, url, }) => { if (!domain) { return null; } return ( } label={ {domain} }} /> } /> ); };