
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
'use client'
|
|
|
|
import { AuthGuard } from '@/components/auth-guard'
|
|
import { PartnersDashboard } from '@/components/partners/partners-dashboard'
|
|
import { useRoleGuard } from '@/hooks/useRoleGuard'
|
|
|
|
export default function LogisticsPartnersPage() {
|
|
useRoleGuard('LOGIST')
|
|
|
|
return (
|
|
<AuthGuard>
|
|
<PartnersDashboard />
|
|
</AuthGuard>
|
|
)
|
|
} |