Add Dock component

This commit is contained in:
Matthew Dapena-Tretter
2017-03-09 11:26:10 -08:00
parent 7f5ad9a359
commit bf39947eee
7 changed files with 882 additions and 9 deletions

View File

@@ -3,11 +3,12 @@
const {Emitter, CompositeDisposable} = require('event-kit')
module.exports = class PanelContainer {
constructor ({location} = {}) {
constructor ({location, dock} = {}) {
this.location = location
this.emitter = new Emitter()
this.subscriptions = new CompositeDisposable()
this.panels = []
this.dock = dock
}
destroy () {