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