You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.3 KiB
60 lines
2.3 KiB
import { NgModule } from '@angular/core'; |
|
import { CommonModule } from '@angular/common'; |
|
import { A11yModule } from '@angular/cdk/a11y'; |
|
import { DragDropModule } from '@angular/cdk/drag-drop'; |
|
import { PortalModule } from '@angular/cdk/portal'; |
|
import { ScrollingModule } from '@angular/cdk/scrolling'; |
|
import { CdkStepperModule } from '@angular/cdk/stepper'; |
|
import { CdkTableModule } from '@angular/cdk/table'; |
|
import { CdkTreeModule } from '@angular/cdk/tree'; |
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms'; |
|
import { RouterModule } from '@angular/router'; |
|
import { LoginComponent } from './login/login.component'; |
|
import { RegisterComponent } from './register/register.component'; |
|
import { HomeComponent } from './home/home.component'; |
|
import { NzFormModule } from 'ng-zorro-antd/form'; |
|
import { NzInputModule } from 'ng-zorro-antd/input'; |
|
import { UiModule } from '../ui/ui.module'; |
|
import { NzButtonModule } from 'ng-zorro-antd/button'; |
|
import { PlanComponent } from './plan/plan.component'; |
|
import { PagesRoutingModule } from './pages-routing.module'; |
|
import { TodayWarningComponent } from './today-warning/today-warning.component'; |
|
import { CriminalRecordsComponent } from './criminal-records/criminal-records.component'; |
|
import { NzSelectModule } from 'ng-zorro-antd/select'; |
|
import { NzDatePickerModule } from 'ng-zorro-antd/date-picker'; |
|
import { NzIconModule } from 'ng-zorro-antd/icon'; |
|
import { NzGridModule } from 'ng-zorro-antd/grid'; |
|
import { NzModalModule } from 'ng-zorro-antd/modal'; |
|
import { NzPaginationModule } from 'ng-zorro-antd/pagination'; |
|
import { NzDropDownModule } from 'ng-zorro-antd/dropdown'; |
|
import { NzMessageModule } from 'ng-zorro-antd/message'; |
|
@NgModule({ |
|
declarations: [LoginComponent, RegisterComponent, HomeComponent, PlanComponent, TodayWarningComponent, CriminalRecordsComponent,], |
|
imports: [ |
|
PagesRoutingModule, |
|
CommonModule, |
|
A11yModule, |
|
PortalModule, |
|
ScrollingModule, |
|
CdkStepperModule, |
|
CdkTableModule, |
|
CdkTreeModule, |
|
DragDropModule, |
|
FormsModule, |
|
ReactiveFormsModule, |
|
RouterModule, |
|
NzFormModule, |
|
NzInputModule, |
|
UiModule, |
|
NzButtonModule, |
|
NzSelectModule, |
|
NzDatePickerModule, |
|
NzIconModule, |
|
NzGridModule, |
|
NzModalModule, |
|
NzPaginationModule, |
|
NzDropDownModule, |
|
NzMessageModule |
|
] |
|
}) |
|
export class PagesModule { }
|
|
|