cms.c2sgmbh/src/components/admin/TenantDashboardView.tsx
Martin Porwoll 6ccb50c5f4 docs: consolidate and update documentation
- Remove obsolete instruction documents (PROMPT_*.md, SECURITY_FIXES.md)
- Update CLAUDE.md with security features, test suite, audit logs
- Merge Techstack_Dokumentation into INFRASTRUCTURE.md
- Update SECURITY.md with custom login route documentation
- Add changelog to TODO.md
- Update email service and data masking for SMTP error handling
- Extend test coverage for CSRF and data masking

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

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

14 lines
342 B
TypeScript

'use client'
import React from 'react'
import { TenantDashboard } from './TenantDashboard'
/**
* Wrapper-Komponente für das Tenant Dashboard als Custom View
* Wird in payload.config.ts als Custom View registriert
*/
export const TenantDashboardView: React.FC = () => {
return <TenantDashboard />
}
export default TenantDashboardView