12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
|
|
import { TicketEdit } from "./_components/TicketEdit";
|
||
|
|
|
||
|
|
type PageProps = {
|
||
|
|
params: {
|
||
|
|
id: string;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function Page({ params: { id } }: PageProps) {
|
||
|
|
return <TicketEdit id={id} />;
|
||
|
|
}
|