Files
leocrm/frontend/src/pages/ContactsStandalone.tsx
T
Agent Zero 868bb274ef feat: standalone buttons for all plugin pages + window system for modals
Standalone buttons:
- Add ExternalLink button to Dms, Calendar, Mail, ContactsList toolbars
- Create standalone pages for each (no sidebar, full screen)
- Add standalone routes outside ProtectedRoute

Window system for modals:
- AppointmentModal -> AppointmentEditForm + openWindow()
- ComposeModal -> MailComposeForm + openWindow()
- FilePreviewModal -> FilePreviewContent + openWindow()
- Calendar, Mail, Dms use openWindow() instead of modal state
2026-07-25 00:21:37 +02:00

11 lines
243 B
TypeScript

import React from 'react';
import { ContactsListPage } from './ContactsList';
export function ContactsStandalonePage() {
return (
<div className="h-screen w-screen overflow-hidden bg-white">
<ContactsListPage />
</div>
);
}