BETTERZON-42: Refactoring components and creating product detail component

This commit is contained in:
2020-12-07 21:37:12 +01:00
parent 4f3a755f78
commit ad1e758325
25 changed files with 72 additions and 11 deletions
@@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-landingpage',
templateUrl: './landingpage.component.html',
styleUrls: ['./landingpage.component.css']
})
export class LandingpageComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}