Services: Admin-Compliance, Backend-Compliance, AI-Compliance-SDK, Consent-SDK, Developer-Portal, PCA-Platform, DSMS Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
292 B
TypeScript
13 lines
292 B
TypeScript
'use client'
|
|
|
|
import { SDKProvider } from '@/lib/sdk/context'
|
|
import { CatalogManagerContent } from '@/components/catalog-manager/CatalogManagerContent'
|
|
|
|
export default function AdminCatalogManagerPage() {
|
|
return (
|
|
<SDKProvider>
|
|
<CatalogManagerContent />
|
|
</SDKProvider>
|
|
)
|
|
}
|