mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-01 05:06:53 +08:00
19 lines
468 B
CoffeeScript
19 lines
468 B
CoffeeScript
path = require 'path'
|
|
require 'coffee-react/register'
|
|
React = require 'react'
|
|
{ComponentRegistry} = require 'inbox-exports'
|
|
SearchBar = require './search-bar'
|
|
SearchSettingsBar = require './search-settings-bar'
|
|
|
|
module.exports =
|
|
configDefaults:
|
|
showOnRightSide: false
|
|
|
|
activate: (@state) ->
|
|
ComponentRegistry.register
|
|
view: SearchBar
|
|
name: 'SearchBar'
|
|
role: 'Global:Toolbar'
|
|
|
|
deactivate: ->
|
|
ComponentRegistry.unregister 'SearchBar'
|