Created
February 23, 2021 11:09
-
-
Save Bilkiss/fba269c654b4ec1b00742815360fc0d3 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, HostListener } from '@angular/core'; | |
@Component({ | |
selector: 'example-component', | |
template: ‘Hey another component!' | |
}) | |
export class ExampleComponent { | |
@HostListener('click', ['$event']) | |
onHostClick(event: Event) { | |
// clicked, `event` available | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment