
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
416 B
TypeScript
13 lines
416 B
TypeScript
import { AuthGuard } from '@/components/auth-guard'
|
||
|
||
// TODO: Создать компонент для создания товарных поставок
|
||
export default function CreateSellerGoodsPage() {
|
||
return (
|
||
<AuthGuard>
|
||
<div className="p-6">
|
||
<h1>Создание поставки товаров</h1>
|
||
<p>Страница в разработке</p>
|
||
</div>
|
||
</AuthGuard>
|
||
)
|
||
} |