link-stack/apps/link/app/(main)/tickets/[id]/@detail/page.tsx
Darren Clarke f901f203b0 Develop
2023-07-18 12:26:57 +00:00

11 lines
215 B
TypeScript

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