11 lines
209 B
TypeScript
11 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} />;
|
|
}
|