This commit is contained in:
VLE2FE
2020-05-19 12:49:06 +02:00
parent bd656352f7
commit 7f47af425d
17 changed files with 197 additions and 5 deletions

View File

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