link-stack/apps/link/app/(main)/tickets/[id]/@detail/page.tsx

12 lines
215 B
TypeScript
Raw Normal View History

2023-06-26 10:07:12 +00:00
import { TicketDetail } from "./_components/TicketDetail";
type PageProps = {
params: {
id: string;
};
};
export default function Page({ params: { id } }: PageProps) {
return <TicketDetail id={id} />;
}