(id: string)
| 35 | type Sort = (typeof SORTS)[number]; |
| 36 | |
| 37 | function scrollTo(id: string) { |
| 38 | document.getElementById(id)?.scrollIntoView({ behavior: "smooth", block: "start" }); |
| 39 | } |
| 40 | |
| 41 | export default function Home() { |
| 42 | const [search, setSearch] = useState(""); |