import Image from "next/image"; import type { ZBookmark } from "@hoarder/trpc/types/bookmarks"; export function AssetContentSection({ bookmark }: { bookmark: ZBookmark }) { if (bookmark.content.type != "asset") { throw new Error("Invalid content type"); } let content; switch (bookmark.content.assetType) { case "image": { switch (bookmark.content.assetType) { case "image": { content = (
asset
); } } break; } } return content; }