mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 09:10:02 +01:00
28 lines
621 B
TypeScript
28 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 { }
|
|
|
|
|
|
|
|
|
|
|
|
|