868bb274ef
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
11 lines
243 B
TypeScript
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>
|
|
);
|
|
}
|