import { ShortNumber } from 'flavours/glitch/components/short_number'; interface Props { tag: { name: string; url?: string; history?: { uses: number; accounts: string; day: string; }[]; following?: boolean; type: 'hashtag'; }; } export const AutosuggestHashtag: React.FC = ({ tag }) => (
#{tag.name}
{tag.history !== undefined && (
total + day.uses * 1, 0)} />
)}
);