Skip to content

Instantly share code, notes, and snippets.

@Dornhoth
Last active September 2, 2020 15:42
Show Gist options
  • Save Dornhoth/44c35c601fb04432d3c4f624f0de43b2 to your computer and use it in GitHub Desktop.
Save Dornhoth/44c35c601fb04432d3c4f624f0de43b2 to your computer and use it in GitHub Desktop.
Directive
import {
Directive,
Input,
TemplateRef,
} from '@angular/core';
@Directive({
selector: '[appInfoPopup]',
})
export class InfoPopupDirective {
@Input() appInfoPopup!: TemplateRef<object>;
@Input() label!: HTMLElement;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment