12 lines
215 B
TypeScript
12 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} />;
|
||
|
|
}
|