2022-09-10 01:00:45 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
2024-10-23 11:34:59 +09:00
|
|
|
import { SharedModule } from '@app/shared/shared.module';
|
2022-09-10 01:00:45 +00:00
|
|
|
import { RouterModule } from '@angular/router';
|
2024-10-23 11:34:59 +09:00
|
|
|
import { GraphsModule } from '@app/graphs/graphs.module';
|
2024-10-27 02:39:55 +00:00
|
|
|
import { PreviewsRoutingModule } from './previews.routing.module';
|
2024-10-22 21:05:01 +09:00
|
|
|
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';
|
2022-09-10 01:00:45 +00:00
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
TransactionPreviewComponent,
|
|
|
|
BlockPreviewComponent,
|
|
|
|
AddressPreviewComponent,
|
2022-09-17 22:27:37 +00:00
|
|
|
PoolPreviewComponent,
|
2022-09-10 01:00:45 +00:00
|
|
|
MasterPagePreviewComponent,
|
|
|
|
],
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
SharedModule,
|
|
|
|
RouterModule,
|
|
|
|
PreviewsRoutingModule,
|
2022-09-17 22:27:37 +00:00
|
|
|
GraphsModule,
|
2023-11-09 07:05:37 +00:00
|
|
|
TxBowtieModule,
|
2022-09-10 01:00:45 +00:00
|
|
|
],
|
|
|
|
})
|
|
|
|
export class PreviewsModule { }
|