Files
sfera-new/src/app/logistics/partners/page.tsx
2025-08-30 15:51:41 +03:00

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>
)
}