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 | 2x 2x 2x 2x 2x 2x 2x 5x 5x | import { Component } from "@angular/core" import { Store } from "@ngrx/store" import { CcState } from "../../../codeCharta.model" import { artificialIntelligenceSelector } from "./selectors/artificialIntelligence.selector" import { SuspiciousMetricsComponent } from "./suspiciousMetrics/suspiciousMetrics.component" import { HighRiskProfileComponent } from "./highRiskProfile/highRiskProfile.component" import { AsyncPipe } from "@angular/common" @Component({ selector: "cc-artificial-intelligence", templateUrl: "./artificialIntelligence.component.html", styleUrls: ["./artificialIntelligence.component.scss"], standalone: true, imports: [SuspiciousMetricsComponent, HighRiskProfileComponent, AsyncPipe] }) export class ArtificialIntelligenceComponent { data$ = this.store.select(artificialIntelligenceSelector) constructor(private store: Store<CcState>) {} } |