mempool/frontend/src/app/previews.module.ts

31 lines
1.2 KiB
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SharedModule } from '@app/shared/shared.module';
import { RouterModule } from '@angular/router';
import { GraphsModule } from '@app/graphs/graphs.module';
import { PreviewsRoutingModule } from './previews.routing.module';
import { TransactionPreviewComponent } from '@components/transaction/transaction-preview.component';
import { BlockPreviewComponent } from '@components/block/block-preview.component';
import { AddressPreviewComponent } from '@components/address/address-preview.component';
import { PoolPreviewComponent } from '@components/pool/pool-preview.component';
import { MasterPagePreviewComponent } from '@components/master-page-preview/master-page-preview.component';
import { TxBowtieModule } from '@components/tx-bowtie-graph/tx-bowtie.module';
@NgModule({
declarations: [
TransactionPreviewComponent,
BlockPreviewComponent,
AddressPreviewComponent,
PoolPreviewComponent,
MasterPagePreviewComponent,
],
imports: [
CommonModule,
SharedModule,
RouterModule,
PreviewsRoutingModule,
GraphsModule,
TxBowtieModule,
],
})
export class PreviewsModule { }