import LinkCard from "@/components/LinkViews/LinkCard"; import { LinkIncludingShortenedCollectionAndTags } from "@/types/global"; export default function CardView({ links, }: { links: LinkIncludingShortenedCollectionAndTags[]; }) { return (
{links.map((e, i) => { return ; })}
); }