import React from "react"; import type { MatchType, MatchTypeFilterValue } from "../../types"; import { ACTION_MODE, BSKY_USER_MATCH_TYPE, MATCH_TYPE_LABEL_AND_COLOR, } from "../constants"; import AsyncButton from "./AsyncButton"; import SocialLinks from "./SocialLinks"; type Props = { detectedCount: number; filterValue: MatchTypeFilterValue; onChangeFilter: (key: MatchType) => void; actionAll: () => Promise; actionMode: (typeof ACTION_MODE)[keyof typeof ACTION_MODE]; matchTypeStats: Record; }; const Sidebar = ({ detectedCount, filterValue, onChangeFilter, actionAll, actionMode, matchTypeStats, }: Props) => { return ( ); }; export default Sidebar;