mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 19:44:12 +00:00
- 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>
14 lines
342 B
TypeScript
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
|