Initial setup ontvlambaar

This commit is contained in:
2024-10-22 21:45:09 +02:00
parent 57c5d30bba
commit 31e443ba5d
22 changed files with 257 additions and 367 deletions

View File

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