UNPKG

celerichain-ember-uii

Version:

Fleetbase UI provides all the interface components, helpers, services and utilities for building a Fleetbase extension into the Console.

12 lines (9 loc) 394 B
import Component from '@glimmer/component'; import { tracked } from '@glimmer/tracking'; export default class LayoutSidebarPanelComponent extends Component { @tracked dropdownButtonRenderInPlace = true; constructor(owner, { dropdownButtonRenderInPlace = true }) { super(...arguments); this.dropdownButtonRenderInPlace = dropdownButtonRenderInPlace; } }