Mailspring/internal_packages/account-sidebar/lib/main.cjsx
Ben Gotow 343e592569 feat(draft-list) Refactor thread-list, create draft-list
Summary: Adds the draft list using a refactored list-tabular class. Also fixes several draft bugs that appeared after allowing editing.

Test Plan: Run tests (need to test new ListTabular component ASAP)

Reviewers: evan

Reviewed By: evan

Differential Revision: https://review.inboxapp.com/D1272
2015-03-09 18:25:53 -07:00

12 lines
335 B
CoffeeScript

React = require "react"
AccountSidebar = require "./account-sidebar"
{ComponentRegistry} = require "inbox-exports"
module.exports =
item: null # The DOM item the main React component renders into
activate: (@state) ->
ComponentRegistry.register
view: AccountSidebar
name: 'AccountSidebar'
role: 'Root:Left'