Files
Yamunaexpress/src/app/(portal)/portal/(app)/myjourney/page.tsx
T
Goutam0612 783c7da7a1 Add owner portal, i18n, contact API, and region/footer assets
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-20 01:59:41 +05:30

9 lines
261 B
TypeScript

'use client';
import { MyJourney } from '@/components/portal/pages';
import { usePortal } from '@/components/portal/portal-context';
export default function MyJourneyPage() {
const { go, toast } = usePortal();
return <MyJourney go={go} toast={toast} />;
}