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