fixed errors

This commit is contained in:
2025-11-14 08:20:52 +01:00
parent 4bdae0252b
commit ffc633c452
7 changed files with 15 additions and 28 deletions

View File

@@ -1,10 +1,11 @@
import { Component } from '@angular/core';
import {NzFormModule} from "ng-zorro-antd/form";
import {FormControl, FormGroup, ReactiveFormsModule, Validators} from "@angular/forms";
import {NzInputDirective} from "ng-zorro-antd/input";
@Component({
selector: 'app-create-book',
imports: [NzFormModule, ReactiveFormsModule],
imports: [NzFormModule, ReactiveFormsModule, NzInputDirective],
templateUrl: './create-book.html',
styleUrls: ['./create-book.css'],
})