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

15 lines
361 B
TypeScript

'use client'
import { AuthGuard } from '@/components/auth-guard'
import { EconomicsPageWrapper } from '@/components/economics/economics-page-wrapper'
import { useRoleGuard } from '@/hooks/useRoleGuard'
export default function LogisticsEconomicsPage() {
useRoleGuard('LOGIST')
return (
<AuthGuard>
<EconomicsPageWrapper />
</AuthGuard>
)
}