Skip to content

Instantly share code, notes, and snippets.

@RaymsDev
Created January 8, 2018 14:51
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 RaymsDev/6d21b9322e640e71677fa021ef8b709f to your computer and use it in GitHub Desktop.
Save RaymsDev/6d21b9322e640e71677fa021ef8b709f to your computer and use it in GitHub Desktop.
[spfx-angular] app root module
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment