import { TicketEdit } from "./_components/TicketEdit"; type PageProps = { params: Promise<{ id: string; }>; }; export default async function Page({ params }: PageProps) { const { id } = await params; return ; }