-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.module.ts
More file actions
21 lines (18 loc) · 958 Bytes
/
app.module.ts
File metadata and controls
21 lines (18 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatButtonModule, MatProgressSpinnerModule, MatToolbarModule, MatListModule, MatGridListModule, MatIconModule, MatCardModule } from '@angular/material';
import {AppRoutingModule} from './app.routing.module';
import { FormsModule } from '@angular/forms';
import {MichaelComponent } from './michael/michael.component';
import { HomeComponent } from './home/home.component';
import { AppComponent} from './app.component';
@NgModule({
declarations: [
AppComponent, HomeComponent, MichaelComponent
],
imports: [ AppRoutingModule, FormsModule, BrowserModule, MatProgressSpinnerModule , MatButtonModule, MatListModule, MatGridListModule, MatToolbarModule, MatIconModule, MatCardModule ],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }