mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-01 05:47:17 +00:00
10 lines
316 B
TypeScript
10 lines
316 B
TypeScript
import Component from '@ember/component';
|
|
// @ts-ignore: Ignore import of compiled template
|
|
import template from '../templates/components/entity-pill';
|
|
import { layout } from '@ember-decorators/component';
|
|
|
|
@layout(template)
|
|
export default class EntityPill extends Component {
|
|
baseClass: string = 'entity-pill';
|
|
}
|