UNPKG

@myorders/ember-ui

Version:

Myorders UI provides all the interface components, helpers, services and utilities for building a Myorders 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; } }