import LinkList from "@/components/LinkList"; import useLinkStore from "@/store/links"; import { useRouter } from "next/router"; export default function () { const router = useRouter(); const { links } = useLinkStore(); const linksByCollection = links.filter( (e) => e.collectionId === Number(router.query.id) ); return ( // ml-80