2021-11-27 22:21:52 +08:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { ExceptionModule as DelonExceptionModule } from '@delon/abc/exception';
|
|
|
|
|
import { NzButtonModule } from 'ng-zorro-antd/button';
|
|
|
|
|
import { NzCardModule } from 'ng-zorro-antd/card';
|
|
|
|
|
|
|
|
|
|
import { ExceptionRoutingModule } from './exception-routing.module';
|
|
|
|
|
import { ExceptionComponent } from './exception.component';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [CommonModule, DelonExceptionModule, NzButtonModule, NzCardModule, ExceptionRoutingModule],
|
2021-12-20 17:10:06 +08:00
|
|
|
declarations: [ExceptionComponent]
|
2021-11-27 22:21:52 +08:00
|
|
|
})
|
|
|
|
|
export class ExceptionModule {}
|