mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-13 21:24:58 +08:00
13 lines
330 B
CoffeeScript
13 lines
330 B
CoffeeScript
{ComponentRegistry} = require 'inbox-exports'
|
|
ContactChip = require './ContactChip'
|
|
Participants = require './Participants'
|
|
|
|
module.exports =
|
|
activate: (state) ->
|
|
ComponentRegistry.register
|
|
name: 'Participants'
|
|
view: Participants
|
|
|
|
ComponentRegistry.register
|
|
name: 'ContactChip'
|
|
view: ContactChip
|