Skip to content

Instantly share code, notes, and snippets.

@oleersoy
Created December 4, 2018 21:33
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 oleersoy/4603c61a4430ec1c1eaf04267e8d0255 to your computer and use it in GitHub Desktop.
Save oleersoy/4603c61a4430ec1c1eaf04267e8d0255 to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { ToolbarComponent } from './toolbar.component';
import { MaterialModule } from './material.module';
@NgModule({
imports: [ BrowserModule, FormsModule, MaterialModule ],
declarations: [ AppComponent, ToolbarComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment