import { getLinkList, getLinkListAll } 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 { use } 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({ typeId: id }) return ( <> {/* */} {linkType?.label} { linkList.map(val => ( )) } {/* */} > ); }