mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
b89fea38c0
Summary: This is the initial diff for the label picker UI. This is all of the functionality and none of the CSS. Test Plan: todo Reviewers: bengotow Reviewed By: bengotow Subscribers: sdw Differential Revision: https://phab.nylas.com/D1761
12 lines
322 B
CoffeeScript
12 lines
322 B
CoffeeScript
CategoryPicker = require "./category-picker"
|
|
|
|
{ComponentRegistry,
|
|
WorkspaceStore} = require 'nylas-exports'
|
|
|
|
module.exports =
|
|
activate: (@state={}) ->
|
|
ComponentRegistry.register CategoryPicker,
|
|
roles: ['thread:BulkAction', 'message:Toolbar']
|
|
|
|
deactivate: ->
|
|
ComponentRegistry.unregister(CategoryPicker)
|