Added more components

This commit is contained in:
Lorenzo Iovino 2023-12-29 04:34:47 +01:00
parent c94493a3c5
commit 8b20acfcc4
28 changed files with 436 additions and 31 deletions

View file

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
@Component({
selector: 'iov-fish',
standalone: true,
imports: [],
templateUrl: './fish.component.html',
styleUrl: './fish.component.scss'
})
export class FishComponent {
}