UNPKG

bivcore-insight

Version:

A blockchain explorer for Bitcore

21 lines (19 loc) 718 B
import { NgModule } from '@angular/core'; import { IonicPageModule } from 'ionic-angular'; import { ErrorComponentModule } from '../../components/error/error.module'; import { FooterComponentModule } from '../../components/footer/footer.module'; import { HeadNavComponentModule } from '../../components/head-nav/head-nav.module'; import { LoaderComponentModule } from '../../components/loader/loader.module'; import { SearchPage } from './search'; @NgModule({ declarations: [SearchPage], imports: [ IonicPageModule.forChild(SearchPage), FooterComponentModule, HeadNavComponentModule, LoaderComponentModule, ErrorComponentModule ], exports: [SearchPage] }) export class SearchPageModule {}