aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-instance/feature-boolean.component.ts
blob: d02d513d6d2864e6e2ae00482c9e5d7dd8c2d294 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { Component, Input } from '@angular/core'

@Component({
  selector: 'my-feature-boolean',
  templateUrl: './feature-boolean.component.html',
  styleUrls: [ './feature-boolean.component.scss' ]
})
export class FeatureBooleanComponent {
  @Input() value: boolean
}