mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-24 16:14:01 +08:00
16 lines
425 B
CoffeeScript
16 lines
425 B
CoffeeScript
path = require 'path'
|
|
require 'coffee-react/register'
|
|
React = require 'react'
|
|
{ComponentRegistry, WorkspaceStore} = 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
|