From 5c7de69dd5978f61d7254888690241d9e80eb458 Mon Sep 17 00:00:00 2001 From: "DESKTOP-P9VU163\\admin" Date: Wed, 18 Jun 2025 13:28:04 +0300 Subject: [PATCH] add Create a feature component --- src/app/hero-detail/hero-detail.html | 1 + src/app/hero-detail/hero-detail.scss | 0 src/app/hero-detail/hero-detail.ts | 11 +++++++++++ 3 files changed, 12 insertions(+) create mode 100644 src/app/hero-detail/hero-detail.html create mode 100644 src/app/hero-detail/hero-detail.scss create mode 100644 src/app/hero-detail/hero-detail.ts diff --git a/src/app/hero-detail/hero-detail.html b/src/app/hero-detail/hero-detail.html new file mode 100644 index 0000000..11ae4cc --- /dev/null +++ b/src/app/hero-detail/hero-detail.html @@ -0,0 +1 @@ +

hero-detail works!

diff --git a/src/app/hero-detail/hero-detail.scss b/src/app/hero-detail/hero-detail.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/hero-detail/hero-detail.ts b/src/app/hero-detail/hero-detail.ts new file mode 100644 index 0000000..920aa08 --- /dev/null +++ b/src/app/hero-detail/hero-detail.ts @@ -0,0 +1,11 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-hero-detail', + imports: [], + templateUrl: './hero-detail.html', + styleUrl: './hero-detail.scss' +}) +export class HeroDetail { + +}