Added a lot of components
This commit is contained in:
parent
e6f42eaa37
commit
b48ab87cc6
68 changed files with 1030 additions and 8 deletions
20
src/app/hero/hero.component.ts
Normal file
20
src/app/hero/hero.component.ts
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
import {Component} from '@angular/core';
|
||||
import {AsciiPhotoComponent} from "../ascii-photo/ascii-photo.component";
|
||||
import {AsyncPipe, NgClass, NgIf} from "@angular/common";
|
||||
|
||||
@Component({
|
||||
selector: 'iov-hero',
|
||||
standalone: true,
|
||||
imports: [
|
||||
AsciiPhotoComponent,
|
||||
NgIf,
|
||||
NgClass,
|
||||
AsyncPipe,
|
||||
],
|
||||
templateUrl: './hero.component.html',
|
||||
styleUrl: './hero.component.scss'
|
||||
})
|
||||
export class HeroComponent {
|
||||
constructor() {
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue