13 lines
276 B
TypeScript
13 lines
276 B
TypeScript
|
|
import { getTicketAction } from "@/app/_actions/tickets";
|
||
|
|
import { TicketHeader } from "../_components/TicketHeader";
|
||
|
|
|
||
|
|
type PageProps = {
|
||
|
|
params: {
|
||
|
|
id: string;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function Page({ params: { id } }: PageProps) {
|
||
|
|
return (<TicketHeader id={id} />);
|
||
|
|
}
|