Notes on NG-Zorro for Angular
.
Published: 9/9/2025Setup a project#
Run the getting started process to create a new project Angular project and to install NG-ZORRO.
Add the NG-ZORRO stylesheets to angular.json, as per the theme customisation documentation.
Use an NG-ZORRO component in the project#
ng g c ui/button
HTML
<button nz-button nzType="primary">Primary Button</button>
TS
import { NzButtonModule } from 'ng-zorro-antd/button';
...
imports: [NzButtonModule],
standalone: true,