Skip to content

Instantly share code, notes, and snippets.

@RaymsDev
Created January 8, 2018 14:51
Embed
What would you like to do?
[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