link-stack/apps/link/app/(main)/tickets/[id]/@header/page.tsx
N-Pex 6440c402cf Mobile friendly version of ticket view
Refactor the header into own component, so it can be shown at "page top" for the mobile one column view.
2024-09-12 15:45:20 +02:00

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