Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1x 1x 1x 1x 1x | import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
import { diagnosticsSelector, IDiagnosticsState } from '@app/client-store-diagnostics';
import { Store } from '@ngrx/store';
@Component({
selector: 'app-diagnostics-home',
templateUrl: './diagnostics-home.component.html',
styleUrls: ['./diagnostics-home.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: false,
})
export class AppDiagnosticsHomeComponent {
private readonly store = inject(Store<IDiagnosticsState>);
public readonly staticData$ = this.store.select(diagnosticsSelector.staticData);
public readonly dynamicData$ = this.store.select(diagnosticsSelector.dynamicData);
public readonly users$ = this.store.select(diagnosticsSelector.users);
}
|