Main structure

+ BG Color
+ Fonts
This commit is contained in:
Felix
2020-12-24 14:58:51 +01:00
commit bbff4088cc
38 changed files with 14439 additions and 0 deletions

View File

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