Changeset b738035 for trip-planner-front/src/app/app.module.ts
- Timestamp:
- 01/24/22 21:08:32 (3 years ago)
- Branches:
- master
- Children:
- 76712b2
- Parents:
- bdd6491
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/app.module.ts
rbdd6491 rb738035 4 4 import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core'; 5 5 import { FormsModule, ReactiveFormsModule } from '@angular/forms'; 6 import { HttpClient , HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';6 import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http'; 7 7 import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; 8 8 import { CategoryService } from './_services/cateogry.service'; … … 26 26 import { MatAutocompleteModule } from '@angular/material/autocomplete'; 27 27 import { EditPlannerComponent } from './planner/edit-planner/edit-planner.component'; 28 import { DetailPlannerComponent } from './planner/detail-planner/detail-planner.component';29 28 import { AddLocationToPlannerPanelComponent } from './location/add-location-to-planner-panel/add-location-to-planner-panel.component'; 30 29 import { HomepageComponent } from './homepage/homepage.component'; … … 49 48 import { AuthGuard } from './auth/auth.guard'; 50 49 import { AuthInterceptor } from './auth/auth.interceptor'; 51 50 import { ExploreComponent } from './explore/explore.component'; 51 import {AutoCompleteModule} from 'primeng/autocomplete'; 52 import { ExploreResultComponent } from './explore/explore-result/explore-result.component'; 53 import {RatingModule} from 'primeng/rating'; 54 import { CustomValidators } from './providers/CustomValidators'; 52 55 53 56 @NgModule({ … … 59 62 LocationsFormComponent, 60 63 EditPlannerComponent, 61 DetailPlannerComponent,62 64 AddLocationToPlannerPanelComponent, 63 65 HomepageComponent, 64 66 LocationDetailsComponent, 65 67 RegisterComponent, 66 LoginComponent 68 LoginComponent, 69 ExploreComponent, 70 ExploreResultComponent 67 71 ], 68 72 imports: [ … … 104 108 FormsModule, 105 109 PaginatorModule, 106 CardModule 110 CardModule, 111 AutoCompleteModule, 112 RatingModule 107 113 ], 108 114
Note:
See TracChangeset
for help on using the changeset viewer.