UNPKG

@alihbuzaid/ember-ui

Version:

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

13 lines (10 loc) 319 B
import Component from '@glimmer/component'; import { action } from '@ember/object'; export default class AsideItemScrollerItemComponent extends Component { @action onClick() { const { onClick } = this.args; if (typeof onClick === 'function') { onClick(...arguments); } } }