import { getLinkList } from "@/app/_lib/data/link"; import { getLinkType } from "@/app/_lib/data/linkType"; import { LinkBlock } from "@/app/_ui/LinkListBox"; import Search from "@/app/_ui/Search"; import { Suspense } from "react"; export default async function Page({ params }: { params: Promise<{ id: string }> }) { const id = (await params).id const linkType = await getLinkType(id) const { list: linkList } = await getLinkList({ filter: { type: id } }) return ( <> {/* */}
...}>

{linkType?.label}

{ linkList.map(val => ( )) }
{/* */} ); }