Skip to content

Instantly share code, notes, and snippets.

@rajatgeekyants
Created June 14, 2018 10:11
Show Gist options
  • Save rajatgeekyants/e124117f1ed8cd28ed5dee3ede66b9cd to your computer and use it in GitHub Desktop.
Save rajatgeekyants/e124117f1ed8cd28ed5dee3ede66b9cd to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { TabsModule } from './tabs/tabs.module';
import { PeopleModule } from './people/people.module';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, TabsModule, PeopleModule],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment