mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-08 17:17:56 +08:00
13 lines
329 B
CoffeeScript
13 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: ->
|