update form from create book

This commit is contained in:
2025-11-10 16:21:26 +01:00
parent 76b6f74086
commit 549d841a02
4 changed files with 27 additions and 17 deletions

View File

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

View File

@@ -1,8 +1,11 @@
import { Component } from '@angular/core';
import {CreateBook} from "../../components/create-book/create-book";
@Component({
selector: 'app-welcome',
imports: [],
imports: [
CreateBook
],
templateUrl: './welcome.html',
styleUrl: './welcome.css'
})