Last active
July 25, 2020 08:18
-
-
Save umairhm/9f3105c42f0536dca7308066656d220d 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: 'element-coercion', | |
template: `...` | |
}) | |
export class ElementCoercionComponent { | |
@Input() elementOne: Element; | |
@Input() elementTwo: Element; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment