Changeset 59329aa for trip-planner-front/src/app/app.module.ts
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/app.module.ts
rceaed42 r59329aa 10 10 import { LocationComponent } from './location/location.component'; 11 11 import { MatIconModule } from '@angular/material/icon'; 12 import {MatListModule} from '@angular/material/list';13 12 import { MatSelectModule } from '@angular/material/select'; 14 13 import {MatInputModule} from '@angular/material/input'; … … 29 28 import { DetailPlannerComponent } from './planner/detail-planner/detail-planner.component'; 30 29 import { AddLocationToPlannerPanelComponent } from './location/add-location-to-planner-panel/add-location-to-planner-panel.component'; 30 import { HomepageComponent } from './homepage/homepage.component'; 31 import {AccordionModule} from 'primeng/accordion'; //accordion and accordion tab 32 import {MenuItem} from 'primeng/api'; 33 import {CarouselModule} from 'primeng/carousel'; 34 import {ButtonModule} from 'primeng/button'; 35 import {ToastModule} from 'primeng/toast'; 36 import {TabViewModule} from 'primeng/tabview'; 37 import { LocationDetailsComponent } from './location/location-details/location-details.component'; 38 import {GalleriaModule} from 'primeng/galleria'; 31 39 32 40 @NgModule({ … … 39 47 EditPlannerComponent, 40 48 DetailPlannerComponent, 41 AddLocationToPlannerPanelComponent 49 AddLocationToPlannerPanelComponent, 50 HomepageComponent, 51 LocationDetailsComponent 42 52 ], 43 53 imports: [ … … 61 71 HttpClientModule, 62 72 ReactiveFormsModule, 63 MatSelectModule 64 73 MatSelectModule, 74 AccordionModule, 75 CarouselModule, 76 ButtonModule, 77 ToastModule, 78 TabViewModule, 79 GalleriaModule 65 80 ], 66 81 providers: [
Note:
See TracChangeset
for help on using the changeset viewer.