1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00
Peertube/client/src/app/shared/shared-instance/feature-boolean.component.ts
2020-06-23 16:00:49 +02:00

10 lines
270 B
TypeScript

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
}