Last active
July 25, 2020 04:10
-
-
Save umairhm/c2208a48f3147260d43b7508ab1cc7c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, Input } from '@angular/core'; | |
@Component({ | |
selector: 'boolean-coercion', | |
template: `...` | |
}) | |
export class BooleanCoercionComponent { | |
@Input() flagOne: boolean; | |
@Input() flagTwo: boolean; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment