2cf433a01c
- Contact model: company, role (kaeufer/verkaeufer/beide), soft-delete - ContactPerson model: 1:N relation with CASCADE delete - USt-IdNr. validation: DE + 10 EU countries - Contact CRUD: 7 API endpoints with RBAC, search/filter/paginate - Frontend: ContactList, ContactForm, ContactDetail with EU/Inland toggle - 73 backend tests (91% coverage), 20 frontend tests
11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
import { ContactForm } from '@/components/contacts/ContactForm';
|
|
|
|
export default function NeuerKontaktPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<h1 className="text-2xl font-bold text-text">Neuer Kontakt</h1>
|
|
<ContactForm mode="create" />
|
|
</div>
|
|
);
|
|
}
|