add Create a feature component

This commit is contained in:
Костя 2025-06-18 13:28:04 +03:00
parent cede8348cc
commit 5c7de69dd5
3 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1 @@
<p>hero-detail works!</p>

View File

View File

@ -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 {
}