mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
16 lines
375 B
JavaScript
16 lines
375 B
JavaScript
import {ComponentRegistry, WorkspaceStore} from 'nylas-exports'
|
|
import SearchBar from './search-bar'
|
|
|
|
export const configDefaults = {
|
|
showOnRightSide: false,
|
|
}
|
|
|
|
export function activate() {
|
|
ComponentRegistry.register(SearchBar, {
|
|
location: WorkspaceStore.Location.ThreadList.Toolbar,
|
|
})
|
|
}
|
|
|
|
export function deactivate() {
|
|
ComponentRegistry.unregister(SearchBar)
|
|
}
|