mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-07 16:48:02 +08:00
10 lines
301 B
JavaScript
10 lines
301 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);
|
|
}
|