+ {props.hashtags.length > 0 ? (
+ <>
+ {props.hashtags.map(hashtag => (
+
+ ))}
+ >
+ ) : (
+ <>
+ {props.loading && (
+
+
+
+ )}
+ >
+ )}
+
+ >
+ )
+}
+
+type HashtagProps = {
+ hashtag: Entity.Tag
+ openTag: (tag: string) => void
+}
+
+function Hashtag(props: HashtagProps) {
+ return (
+