mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
18 lines
411 B
TypeScript
18 lines
411 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { RouterModule, Routes } from '@angular/router'
|
|
import { LoadingModule } from '@start9labs/shared'
|
|
import { LoadingPage } from './loading.page'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: LoadingPage,
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [LoadingModule, RouterModule.forChild(routes)],
|
|
declarations: [LoadingPage],
|
|
})
|
|
export class LoadingPageModule {}
|