Skip to content

Instantly share code, notes, and snippets.

@oleersoy
Created December 4, 2018 21:39
Show Gist options
  • Select an option

  • Save oleersoy/78fe21c8e04451c1a0c69ae3debf54f0 to your computer and use it in GitHub Desktop.

Select an option

Save oleersoy/78fe21c8e04451c1a0c69ae3debf54f0 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