13 lines
248 B
TypeScript
13 lines
248 B
TypeScript
import { TicketEdit } from "./_components/TicketEdit";
|
|
|
|
type PageProps = {
|
|
params: Promise<{
|
|
id: string;
|
|
}>;
|
|
};
|
|
|
|
export default async function Page({ params }: PageProps) {
|
|
const { id } = await params;
|
|
|
|
return <TicketEdit id={id} />;
|
|
}
|