783c7da7a1
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
'use client';
|
|
import { Construction } from '@/components/portal/pages';
|
|
import { usePortal } from '@/components/portal/portal-context';
|
|
|
|
export default function ConstructionPage() {
|
|
const { go, toast } = usePortal();
|
|
return <Construction go={go} toast={toast} />;
|
|
}
|