Created
July 26, 2020 02:10
-
-
Save umairhm/7317712c67c11e0e722cb8641c766498 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: 'number-coercion', | |
template: `...` | |
}) | |
export class NumberCoercionComponent { | |
@Input() numberOne: number; | |
@Input() numberTwo: number; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment