Basic structure of payment screen

This commit is contained in:
2020-12-26 20:18:19 +01:00
parent bbff4088cc
commit 04d2115f96
11 changed files with 219 additions and 63 deletions

View File

@@ -4,6 +4,7 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { HeaderComponent } from './header/header.component';
import { PaymentComponent } from './payment/payment.component';
import { QRCodeModule } from 'angularx-qrcode';
@NgModule({
declarations: [
@@ -12,7 +13,8 @@ import { PaymentComponent } from './payment/payment.component';
PaymentComponent
],
imports: [
BrowserModule
BrowserModule,
QRCodeModule
],
providers: [],
bootstrap: [AppComponent]