Files
sfera/src/app/supplies/create-suppliers/page.tsx
Veronika Smirnova 3229ce8ed3 feat(supplies): complete ЭТАП 1.4 - final integration of modular architecture
Завершение рефакторинга create-suppliers-supply-page.tsx:
- Исправлены ESLint предупреждения (неиспользуемые переменные с префиксом _)
- Интеграция всех блок-компонентов с хуками работает корректно
- Сохранена полная функциональность исходного компонента

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-12 20:09:08 +03:00

11 lines
281 B
TypeScript

import { AuthGuard } from '@/components/auth-guard'
import { CreateSuppliersSupplyPage } from '@/components/supplies/create-suppliers'
export default function CreateSuppliersSupplyPageRoute() {
return (
<AuthGuard>
<CreateSuppliersSupplyPage />
</AuthGuard>
)
}