You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { AttendancePage } from './attendance.page';
|
|
import { HomeComponent } from './home/home.component';
|
|
import {MonthlyAttendanceComponent} from './monthly-attendance/monthly-attendance.component';
|
|
import { HmgCommonModule } from '../hmg-common/hmg-common.module';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: AttendancePage,
|
|
children: [
|
|
{
|
|
path: 'home',
|
|
component: HomeComponent
|
|
},
|
|
{
|
|
path: 'monthlyAttendance',
|
|
component: MonthlyAttendanceComponent
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
HmgCommonModule,
|
|
RouterModule.forChild(routes)
|
|
],
|
|
declarations: [AttendancePage, HomeComponent, MonthlyAttendanceComponent]
|
|
})
|
|
export class AttendancePageModule {}
|