import { db } from "@link-stack/bridge-common"; import { serviceConfig, Edit } from "@link-stack/bridge-ui"; type PageProps = { params: Promise<{ segment: string[] }>; }; export default async function Page({ params }: PageProps) { const { segment } = await params; const service = segment[0]; const id = segment?.[1]; if (!id) return null; const { [service]: { table }, } = serviceConfig; const row = await db .selectFrom(table) .selectAll() .where("id", "=", id) .executeTakeFirst(); if (!row) return null; return ; }