feat: модульная архитектура sidebar и улучшения навигации
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
15
src/app/logistics/economics/page.tsx
Normal file
15
src/app/logistics/economics/page.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
'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>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user