providers create form added

This commit is contained in:
2025-11-27 16:42:20 +01:00
parent cbf01acb99
commit 6235df5482
7 changed files with 17 additions and 10 deletions

View File

@@ -1 +1 @@
<p>customers works!</p>
<app-customers-card-form/>

View File

@@ -1,8 +1,11 @@
import { Component } from '@angular/core';
import {CustomersCardForm} from "./customers-card-form/customers-card-form";
@Component({
selector: 'app-customers',
imports: [],
imports: [
CustomersCardForm
],
templateUrl: './customers.html',
styleUrl: './customers.css',
})