7 lines
244 B
TypeScript
7 lines
244 B
TypeScript
import { SupportView } from "@/components/support/SupportView";
|
|
|
|
export default async function SupportTicketPage({ params }: { params: Promise<{ id: string }> }) {
|
|
const { id } = await params;
|
|
return <SupportView initialTicketId={id} />;
|
|
}
|