red-ui/apps/red-ui/src/app/components/skeleton/skeleton-top-bar/skeleton-top-bar.component.ts
2023-08-02 15:58:36 +03:00

13 lines
431 B
TypeScript

import { ChangeDetectionStrategy, Component } from '@angular/core';
import { Title } from '@angular/platform-browser';
@Component({
selector: 'redaction-skeleton-top-bar',
templateUrl: './skeleton-top-bar.component.html',
styleUrls: ['./skeleton-top-bar.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SkeletonTopBarComponent {
constructor(readonly titleService: Title) {}
}