hidden view

pull/1857/head
bunsenstraat 3 years ago
parent 7bda0908f7
commit 822db2118b
  1. 10
      apps/remix-ide/src/app/components/hidden-panel.tsx

@ -14,13 +14,21 @@ const profile = {
}
export class HiddenPanel extends AbstractPanel {
el: HTMLDivElement
el: HTMLElement
constructor () {
super(profile)
this.el = document.createElement('div')
this.el.setAttribute('class', 'pluginsContainer')
}
addView (profile: any, view: any): void {
super.removeView(profile)
super.addView(profile, view)
this.renderComponent()
}
render () {
console.log(this.el)
return this.el
}

Loading…
Cancel
Save