home component

This commit is contained in:
2021-09-13 17:11:17 +02:00
parent db089a9f2a
commit 2ec6311ca9
6 changed files with 49 additions and 3 deletions

View File

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}