mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-09 09:38:07 +08:00
14 lines
329 B
CoffeeScript
14 lines
329 B
CoffeeScript
|
{ComponentRegistry} = require 'inbox-exports'
|
||
|
ResizableComponent = require './resizable-component.cjsx'
|
||
|
|
||
|
module.exports =
|
||
|
activate: ->
|
||
|
ComponentRegistry.register
|
||
|
name: 'ResizableComponent'
|
||
|
view: ResizableComponent
|
||
|
|
||
|
deactivate: (state) ->
|
||
|
ComponentRegistry.unregister 'ResizableComponent'
|
||
|
|
||
|
serialize: ->
|