mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-11 02:30:21 +08:00
16 lines
407 B
JavaScript
16 lines
407 B
JavaScript
import { ComponentRegistry, WorkspaceStore } from 'nylas-exports';
|
|
import ThreadSearchBar from './thread-search-bar';
|
|
|
|
export const configDefaults = {
|
|
showOnRightSide: false,
|
|
};
|
|
|
|
export function activate() {
|
|
ComponentRegistry.register(ThreadSearchBar, {
|
|
location: WorkspaceStore.Location.ThreadList.Toolbar,
|
|
});
|
|
}
|
|
|
|
export function deactivate() {
|
|
ComponentRegistry.unregister(ThreadSearchBar);
|
|
}
|