import classNames from "classnames"; import { TiHeartFullOutline } from "react-icons/ti"; import { MdCalendarToday } from "react-icons/md"; interface Props { value: "likes" | "createdAt"; onChange: (s: "createdAt" | "likes") => void; } export const Sort = ({ value, onChange }: Props) => { return (
); };