This commit is contained in:
2025-10-18 01:46:46 +03:00
commit 9baa68258e
74 changed files with 29125 additions and 0 deletions

View File

@ -0,0 +1,22 @@
import ObjectForm from '@/components/ObjectForm/ObjectForm';
import { MarketplaceSchema } from '@/lib/client';
import { zMarketplaceSchema } from '@/lib/client/zod.gen';
const MarketplacesPage = () => {
return (
<>
<ObjectForm<MarketplaceSchema, typeof zMarketplaceSchema>
schema={zMarketplaceSchema}
includeKeys={['name']}
onCreate={(marketplace) => {}}
labels={{
name: 'Название',
authData: 'Данные для авторизации',
}}
/>
{/*<MarketplacesTable />*/}
</>
);
};
export default MarketplacesPage;