Added multiple pages

This commit is contained in:
Erik Tiekstra
2021-03-23 10:03:13 +01:00
committed by Erik Tiekstra
parent ec6c7eb4a9
commit 226f291bd3
30 changed files with 286 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import { SettingsComponent } from './settings.component';
@NgModule({
declarations: [SettingsComponent],
imports: [CommonModule, RouterModule.forChild([{ path: '', component: SettingsComponent }])],
})
export class SettingsModule {}