update FE types and unify sideload page with marketplace show

This commit is contained in:
Matt Hill
2023-03-07 14:37:14 -07:00
committed by Aiden McClelland
parent 6556fcc531
commit cb7790ccba
57 changed files with 699 additions and 1780 deletions

View File

@@ -3,10 +3,10 @@ import { CommonModule } from '@angular/common'
import { Routes, RouterModule } from '@angular/router'
import { IonicModule } from '@ionic/angular'
import { SharedPipesModule } from '@start9labs/shared'
import {
AppInterfacesItemComponent,
AppInterfacesPage,
AddressTypePipe,
} from './app-interfaces.page'
const routes: Routes = [
@@ -23,6 +23,10 @@ const routes: Routes = [
RouterModule.forChild(routes),
SharedPipesModule,
],
declarations: [AppInterfacesPage, AppInterfacesItemComponent],
declarations: [
AppInterfacesPage,
AppInterfacesItemComponent,
AddressTypePipe,
],
})
export class AppInterfacesPageModule {}