import React, { Dispatch, SetStateAction } from "react"; import { Sort } from "@/types/global"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faSort } from "@fortawesome/free-solid-svg-icons"; type Props = { sortBy: Sort; setSort: Dispatch>; }; export default function SortDropdown({ sortBy, setSort }: Props) { return (
); }