UNPKG
vb-insight-ui
Version:
latest (1.0.0)
1.0.0
A bitcoin block explorer and AP customized for VB.
github.com/vaultbank/insight
vaultbank/insight
vb-insight-ui
/
app
/
src
/
components
/
latest-transactions
/
latest-transactions.module.ts
17 lines
(15 loc)
•
360 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{ NgModule }
from
'@angular/core'
;
import
{ IonicModule }
from
'ionic-angular'
;
import
{ LatestTransactionsComponent }
from
'./latest-transactions'
;
@NgModule(
{ declarations: [ LatestTransactionsComponent ], imports: [ IonicModule ], exports: [ LatestTransactionsComponent ] }
)
export
class
LatestTransactionsComponentModule
{}