Mailspring/app/internal_packages/attachments/lib/main.es6
2017-09-26 11:33:08 -07:00

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);
}