Skip to content

Instantly share code, notes, and snippets.

@squadwuschel
Last active October 31, 2016 12: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 squadwuschel/9cd8f36faa314e769a4dd609b52ff617 to your computer and use it in GitHub Desktop.
Save squadwuschel/9cd8f36faa314e769a4dd609b52ff617 to your computer and use it in GitHub Desktop.
app.modules Definition von globalen Modulen für unsere Angular 2.1.1 App
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
imports: [BrowserModule],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment