import LinkList from "@/components/LinkViews/LinkList"; import { LinkIncludingShortenedCollectionAndTags } from "@/types/global"; export default function ListView({ links, showCheckbox = true, editMode }: { links: LinkIncludingShortenedCollectionAndTags[]; showCheckbox?: boolean; editMode?: boolean; }) { return (
{links.map((e, i) => { return ( ); })}
); }