mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 17:17:09 +01:00
29 lines
621 B
TypeScript
29 lines
621 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { SharedModule } from '../../shared/shared.module';
|
||
|
import { TxBowtieGraphComponent } from '../tx-bowtie-graph/tx-bowtie-graph.component';
|
||
|
import { TxBowtieGraphTooltipComponent } from '../tx-bowtie-graph-tooltip/tx-bowtie-graph-tooltip.component';
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
SharedModule,
|
||
|
],
|
||
|
declarations: [
|
||
|
TxBowtieGraphComponent,
|
||
|
TxBowtieGraphTooltipComponent,
|
||
|
],
|
||
|
exports: [
|
||
|
TxBowtieGraphComponent,
|
||
|
TxBowtieGraphTooltipComponent,
|
||
|
]
|
||
|
})
|
||
|
export class TxBowtieModule { }
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|