import { FormattedMessage } from "react-intl"; import Icon from "@/Components/Icons/Icon"; import { Tab } from "@/Components/TabSelectors/TabSelectors"; import { ProfileTabType } from "@/Pages/Profile/ProfileTabType"; const ProfileTabSelectors = { Notes: { text: ( <> ), value: ProfileTabType.NOTES, }, Reactions: { text: ( <> ), value: ProfileTabType.REACTIONS, }, Followers: { text: ( <> ), value: ProfileTabType.FOLLOWERS, }, Follows: { text: ( <> ), value: ProfileTabType.FOLLOWS, }, Zaps: { text: ( <> ), value: ProfileTabType.ZAPS, }, Muted: { text: ( <> ), value: ProfileTabType.MUTED, }, Blocked: { text: ( <> ), value: ProfileTabType.BLOCKED, }, Relays: { text: ( <> ), value: ProfileTabType.RELAYS, }, Bookmarks: { text: ( <> ), value: ProfileTabType.BOOKMARKS, }, } as { [key: string]: Tab }; export default ProfileTabSelectors;