UNPKG

@alihbuzaid/ember-ui

Version:

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

11 lines (9 loc) 281 B
import Component from '@glimmer/component'; import { tracked } from '@glimmer/tracking'; export default class ChatWindowLogComponent extends Component { @tracked chatLog; constructor(owner, { record }) { super(...arguments); this.chatLog = record; } }