mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
27 lines
782 B
TypeScript
27 lines
782 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { Routes, RouterModule } from '@angular/router'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { ServerMetricsPage } from './server-metrics.page'
|
|
import { PwaBackComponentModule } from 'src/app/components/pwa-back-button/pwa-back.component.module'
|
|
import { TextSpinnerComponentModule } from 'src/app/components/text-spinner/text-spinner.component.module'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: ServerMetricsPage,
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
RouterModule.forChild(routes),
|
|
PwaBackComponentModule,
|
|
TextSpinnerComponentModule,
|
|
],
|
|
declarations: [ServerMetricsPage],
|
|
})
|
|
export class ServerMetricsPageModule { }
|