multi-project/projects/app/_modules/viget/switch/switch.component.ts

13 lines
231 B
TypeScript

import { Component, Input } from '@angular/core';
@Component({
selector: 'switch',
templateUrl: './switch.component.html',
styleUrls: ['./switch.component.scss']
})
export class SwitchComponent {
@Input() val:boolean;
}