Skip to content

Instantly share code, notes, and snippets.

@zzpzaf
Last active November 9, 2021 10:05
Show Gist options
  • Save zzpzaf/859595116647d028cd8924866b1973fe to your computer and use it in GitHub Desktop.
Save zzpzaf/859595116647d028cd8924866b1973fe to your computer and use it in GitHub Desktop.
Angular Directive selectors - Class Selector example
import { Directive } from '@angular/core';
@Directive({
selector: '.myclass'
})
export class MyDirective {
constructor() { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment