provide specific engine boundaries for nodejs and yarn
[oweals/peertube.git] / client / src / app / shared / instance / feature-boolean.component.ts
1 import { Component, Input } from '@angular/core'
2
3 @Component({
4   selector: 'my-feature-boolean',
5   templateUrl: './feature-boolean.component.html',
6   styleUrls: [ './feature-boolean.component.scss' ]
7 })
8 export class FeatureBooleanComponent {
9   @Input() value: boolean
10 }