mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-02 13:27:55 +08:00
10 lines
307 B
JavaScript
10 lines
307 B
JavaScript
import { ComponentRegistry } from 'nylas-exports';
|
|
import MessageAttachments from './message-attachments';
|
|
|
|
export function activate() {
|
|
ComponentRegistry.register(MessageAttachments, { role: 'MessageAttachments' });
|
|
}
|
|
|
|
export function deactivate() {
|
|
ComponentRegistry.unregister(MessageAttachments);
|
|
}
|