mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
45e27d7ded
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)
|