mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-15 06:06:35 +08:00
15 lines
600 B
JavaScript
15 lines
600 B
JavaScript
import { ComponentRegistry } from 'mailspring-exports';
|
|
import SidebarParticipantProfile from './sidebar-participant-profile';
|
|
import SidebarRelatedThreads from './sidebar-related-threads';
|
|
|
|
export function activate() {
|
|
ComponentRegistry.register(SidebarParticipantProfile, { role: 'MessageListSidebar:ContactCard' });
|
|
ComponentRegistry.register(SidebarRelatedThreads, { role: 'MessageListSidebar:ContactCard' });
|
|
}
|
|
|
|
export function deactivate() {
|
|
ComponentRegistry.unregister(SidebarParticipantProfile);
|
|
ComponentRegistry.unregister(SidebarRelatedThreads);
|
|
}
|
|
|
|
export function serialize() {}
|