Address page with QR code

This commit is contained in:
Simon Lindh
2019-11-13 14:51:44 +08:00
parent 4de8384708
commit 5d61e00ab1
18 changed files with 8241 additions and 93 deletions

View File

@@ -1,5 +1,6 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { QRCodeModule } from 'angularx-qrcode';
import { ExplorerComponent } from './explorer/explorer.component';
import { TransactionComponent } from './transaction/transaction.component';
import { RouterModule, Routes } from '@angular/router';
@@ -33,6 +34,7 @@ const routes: Routes = [
SharedModule,
CommonModule,
RouterModule.forChild(routes),
QRCodeModule,
]
})
export class ExplorerModule { }