opf/openproject

View on GitHub
frontend/src/app/shared/components/tabs/tab-badges/tab-count.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';

@Component({
  selector: 'op-tab-count',
  templateUrl: './tab-count.component.html',
  styleUrls: ['./tab-count.component.sass'],
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class TabCountComponent {
  @Input() count:number;
}