mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-01 05:47:17 +00:00
10 lines
418 B
TypeScript
10 lines
418 B
TypeScript
![]() |
import Component from '@ember/component';
|
||
|
// @ts-ignore: Ignore import of compiled template
|
||
|
import template from '../../../templates/components/notifications/dialog/dialog-header';
|
||
|
import { tagName, layout, classNames } from '@ember-decorators/component';
|
||
|
|
||
|
@layout(template)
|
||
|
@tagName('header')
|
||
|
@classNames('notification-confirm-modal__header')
|
||
|
export default class NotificationsDialogDialogHeader extends Component {}
|