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

13 lines
276 B
TypeScript
Raw Normal View History

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} />);
}