2026-04-28 02:43:00 +02:00
|
|
|
import { CreateDocumentWizard } from '@/components/documents/create-document-wizard';
|
2026-04-28 02:35:36 +02:00
|
|
|
|
|
|
|
|
interface PageProps {
|
|
|
|
|
params: Promise<{ portSlug: string }>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default async function NewDocumentPage({ params }: PageProps) {
|
|
|
|
|
const { portSlug } = await params;
|
2026-04-28 02:43:00 +02:00
|
|
|
return <CreateDocumentWizard portSlug={portSlug} />;
|
2026-04-28 02:35:36 +02:00
|
|
|
}
|