Skip to content

Instantly share code, notes, and snippets.

@aniketmuruskar
Created August 6, 2022 12:21
Show Gist options
  • Save aniketmuruskar/299c9db494677dae4f501ecba835c107 to your computer and use it in GitHub Desktop.
Save aniketmuruskar/299c9db494677dae4f501ecba835c107 to your computer and use it in GitHub Desktop.
The host directive
import { Directive, ViewContainerRef } from '@angular/core';
@Directive({
selector: '[appDynamicComponentHost]'
})
export class AppComponentHostDirective {
constructor(public viewContainerRef: ViewContainerRef) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment