9 lines
286 B
TypeScript
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 {}
|