update form from create book

This commit is contained in:
2025-11-10 16:22:48 +01:00
parent 549d841a02
commit 9c0da1fc85
2 changed files with 3 additions and 6 deletions

View File

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

View File

@@ -3,5 +3,3 @@
<h1 class="text-3xl font-bold underline">
Hello world!
</h1>
<app-create-book></app-create-book>