src/app/core/dashboard/dashboard-widget/widget-content/widget-content.component.ts
| changeDetection | ChangeDetectionStrategy.OnPush |
| selector | app-widget-content |
| standalone | true |
| styleUrls | widget-content.component.scss |
| template | |
No results matching.
import { Component, ChangeDetectionStrategy } from "@angular/core";
@Component({
changeDetection: ChangeDetectionStrategy.OnPush,
selector: "app-widget-content",
template: `<ng-content></ng-content>`,
styleUrls: ["widget-content.component.scss"],
})
export class WidgetContentComponent {}
widget-content.component.scss
:host {
width: 100%;
display: flex;
flex-direction: column;
}