first commit
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import { SupportView } from "@/components/support/SupportView";
|
||||
|
||||
export default async function SupportTicketPage({ params }: { params: Promise<{ id: string }> }) {
|
||||
const { id } = await params;
|
||||
return <SupportView initialTicketId={id} />;
|
||||
}
|
||||
Reference in New Issue
Block a user