Can we consider the ng-zorro-antd as a replacement for UI components for abp angular?
Links
https://docs.abp.io/en/abp/latest/UI/Angular/Component-Replacement
Add ng-zorro-antd
yarn add ng-zorro-antd
Add required modules to shared.module.ts
import { CoreModule } from '@abp/ng.core';
import { NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap';
import { NgModule } from '@angular/core';
import { ThemeBasicModule } from '@abp/ng.theme.basic';
import { ThemeSharedModule } from '@abp/ng.theme.shared';
import { NgxValidateCoreModule } from '@ngx-validate/core';
import { NzLayoutModule } from 'ng-zorro-antd/layout'; //add this line
@NgModule({
declarations: [],
imports: [
CoreModule,
ThemeSharedModule,
ThemeBasicModule,
NgbDropdownModule,
NgxValidateCoreModule,
NzLayoutModule //add this line
],
exports: [
CoreModule,
ThemeSharedModule,
ThemeBasicModule,
NgbDropdownModule,
NgxValidateCoreModule,
NzLayoutModule //add this line
],
providers: []
})
export class SharedModule {}
https://docs.abp.io/en/abp/latest/UI/Angular/Component-Replacement#how-to-replace-a-layout
<nz-layout>
<nz-header>Header</nz-header>
<nz-content>
<router-outlet></router-outlet>
</nz-content>
<nz-footer>Footer</nz-footer>
</nz-layout>