mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-06 03:50:26 +02:00
10 lines
270 B
TypeScript
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
|
|
}
|