mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-03 22:11:57 +08:00
13 lines
371 B
Text
13 lines
371 B
Text
|
import {ComponentRegistry, WorkspaceStore} from 'nylas-exports';
|
||
|
import AccountErrorHeader from './account-error-header';
|
||
|
|
||
|
export function activate() {
|
||
|
ComponentRegistry.register(AccountErrorHeader, {location: WorkspaceStore.Sheet.Threads.Header});
|
||
|
}
|
||
|
|
||
|
export function serialize() {}
|
||
|
|
||
|
export function deactivate() {
|
||
|
ComponentRegistry.unregister(AccountErrorHeader);
|
||
|
}
|