mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
31 lines
965 B
TypeScript
31 lines
965 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { Routes, RouterModule } from '@angular/router'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { AppPropertiesPage } from './app-properties.page'
|
|
import { PwaBackComponentModule } from 'src/app/components/pwa-back-button/pwa-back.component.module'
|
|
import { QRComponentModule } from 'src/app/components/qr/qr.component.module'
|
|
import { SharingModule } from 'src/app/modules/sharing.module'
|
|
import { TextSpinnerComponentModule } from 'src/app/components/text-spinner/text-spinner.component.module'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: AppPropertiesPage,
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
RouterModule.forChild(routes),
|
|
PwaBackComponentModule,
|
|
QRComponentModule,
|
|
SharingModule,
|
|
TextSpinnerComponentModule,
|
|
],
|
|
declarations: [AppPropertiesPage],
|
|
})
|
|
export class AppPropertiesPageModule { }
|