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