Skip to content

Instantly share code, notes, and snippets.

@ssukhpinder
Created July 25, 2020 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssukhpinder/a706617ed98e41c248475cba32fba2f4 to your computer and use it in GitHub Desktop.
Save ssukhpinder/a706617ed98e41c248475cba32fba2f4 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import {AuthGuardService} from './auth-guard.service';
import { HomeComponent } from './home/home.component'
@NgModule({
declarations: [
AppComponent,
HomeComponent
],
imports: [
BrowserModule,
AppRoutingModule
],
providers: [AuthGuardService],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment