import React, { Dispatch, SetStateAction } from "react"; import { Sort } from "@/types/global"; import { dropdownTriggerer } from "@/lib/client/utils"; type Props = { sortBy: Sort; setSort: Dispatch>; }; export default function SortDropdown({ sortBy, setSort }: Props) { return (
); }