Changeset fa375fe for trip-planner-front/src/app/app.module.ts
- Timestamp:
- 10/16/21 18:10:51 (3 years ago)
- Branches:
- master
- Children:
- eed0bf8
- Parents:
- 6a3a178
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/app.module.ts
r6a3a178 rfa375fe 2 2 import { AppComponent } from './app.component'; 3 3 import { BrowserModule } from '@angular/platform-browser'; 4 import { NgModule } from '@angular/core';5 import {FormsModule } from '@angular/forms';4 import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core'; 5 import {FormsModule, ReactiveFormsModule} from '@angular/forms'; 6 6 import {HttpClient, HttpClientModule} from '@angular/common/http'; 7 7 import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; … … 22 22 import { MatButtonModule } from '@angular/material/button'; 23 23 import {MatGridListModule} from '@angular/material/grid-list'; 24 import { CreateInitialPlannerComponent } from './create-initial-planner/create-initial-planner.component'; 25 import { LocationsFormComponent } from './locations-form/locations-form.component'; 26 import { MatFormFieldModule } from '@angular/material/form-field'; 27 import {MatAutocompleteModule} from '@angular/material/autocomplete'; 24 28 25 29 @NgModule({ … … 27 31 AppComponent, 28 32 PlannerComponent, 29 LocationComponent 33 LocationComponent, 34 CreateInitialPlannerComponent, 35 LocationsFormComponent 30 36 ], 31 37 imports: [ … … 44 50 MatCardModule, 45 51 MatButtonModule, 46 MatGridListModule 52 MatGridListModule, 53 MatFormFieldModule, 54 MatAutocompleteModule, 55 HttpClientModule, 56 ReactiveFormsModule, 57 MatSelectModule 58 47 59 ], 48 60 providers: [ 49 61 CategoryService, 50 62 PlannerService 63 51 64 ], 52 bootstrap: [AppComponent] 65 bootstrap: [AppComponent], 66 schemas: [NO_ERRORS_SCHEMA] 53 67 54 68 })
Note:
See TracChangeset
for help on using the changeset viewer.