Mailspring/internal_packages/inbox-contact-elements/lib/main.coffee

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