common-ui/src/lib/help-mode/help-mode-dialog/help-mode-dialog.component.ts
2021-10-06 09:50:13 +03:00

9 lines
286 B
TypeScript

import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
templateUrl: './help-mode-dialog.component.html',
styleUrls: ['./help-mode-dialog.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class HelpModeDialogComponent {}