mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
d2833cfefa
Summary: # Conflicts: # static/components/tokenizing-text-field.less Wat no Test Plan: Tested with ci build Reviewers: evan Reviewed By: evan Maniphest Tasks: T1216 Differential Revision: https://phab.nylas.com/D1804
14 lines
376 B
CoffeeScript
14 lines
376 B
CoffeeScript
path = require 'path'
|
|
{ComponentRegistry, WorkspaceStore, React} = require 'nylas-exports'
|
|
SearchBar = require './search-bar'
|
|
|
|
module.exports =
|
|
configDefaults:
|
|
showOnRightSide: false
|
|
|
|
activate: (@state) ->
|
|
ComponentRegistry.register SearchBar,
|
|
location: WorkspaceStore.Location.ThreadList.Toolbar
|
|
|
|
deactivate: ->
|
|
ComponentRegistry.unregister SearchBar
|