18 lines
639 B
TypeScript
18 lines
639 B
TypeScript
import { Component, signal } from '@angular/core';
|
|
import { ProductComponent } from './product-component/product-component';
|
|
import { Phones } from "./phones/phones";
|
|
import { ProgressBar } from "./progress-bar/progress-bar";
|
|
import { UserCardComponent } from './user-card-component/user-card-component';
|
|
import { FormProfile } from './form-profile/form-profile';
|
|
import { TemplateDrivenForm } from './template-driven-form/template-driven-form';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
imports: [TemplateDrivenForm],
|
|
templateUrl: './app.html',
|
|
styleUrl: './app.css'
|
|
})
|
|
export class App {
|
|
protected readonly title = signal('demo');
|
|
}
|