Skip to content

Instantly share code, notes, and snippets.

@huytrongnguyen
Created April 8, 2018 02:17
Show Gist options
  • Save huytrongnguyen/58ab3e1b1444720f9f1de7c740a37436 to your computer and use it in GitHub Desktop.
Save huytrongnguyen/58ab3e1b1444720f9f1de7c740a37436 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
imports: [
BrowserModule,
],
declarations: [
AppComponent,
],
exports: [ AppComponent ],
bootstrap: [ AppComponent ],
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment