Skip to content

Instantly share code, notes, and snippets.

@nonodev96
Created January 21, 2022 17:21
Show Gist options
  • Select an option

  • Save nonodev96/b66ca3b50b4abc878ff6bb6e9862cd82 to your computer and use it in GitHub Desktop.

Select an option

Save nonodev96/b66ca3b50b4abc878ff6bb6e9862cd82 to your computer and use it in GitHub Desktop.

Revisions

  1. nonodev96 created this gist Jan 21, 2022.
    42 changes: 42 additions & 0 deletions HomeComponent.ts
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,42 @@
    import {
    AfterContentChecked,
    AfterContentInit,
    AfterViewChecked,
    AfterViewInit,
    Component,
    DoCheck,
    OnChanges,
    OnDestroy,
    OnInit
    } from '@angular/core';

    @Component({
    selector: 'app-home',
    templateUrl: './home.component.html'
    })
    export class HomeComponent
    implements
    OnChanges,
    OnInit,
    DoCheck,
    AfterContentInit,
    AfterContentChecked,
    AfterViewInit,
    AfterViewChecked,
    OnDestroy {
    ngOnChanges() {}

    ngOnInit() {}

    ngDoCheck() {}

    ngAfterContentInit() {}

    ngAfterContentChecked() {}

    ngAfterViewInit() {}

    ngAfterViewChecked() {}

    ngOnDestroy() {}
    }