783c7da7a1
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
'use client';
|
|
import { Verify } from '@/components/portal/auth';
|
|
import { usePortalNav } from '@/components/portal/nav';
|
|
|
|
export default function VerifyPage() {
|
|
const go = usePortalNav();
|
|
return <Verify go={go} />;
|
|
}
|