-
ywb16155 authored
commit #5 - adding html templates and components, beginning styling, working towards student and lecturer functionality being complete
ywb16155 authoredcommit #5 - adding html templates and components, beginning styling, working towards student and lecturer functionality being complete
lecturer-routes.module.ts 415 B
import {NgModule} from '@angular/core';
import {RouterModule} from '@angular/router';
import {LecturerRootComponent} from 'src/app/LecturerComponents/lecturer-root.component';
const lecturerRoutes = [
{ path: 'ldashboard', component: LecturerRootComponent },
];
@NgModule({
imports: [
RouterModule.forChild(lecturerRoutes)
],
exports: [
RouterModule
]
})
export class LecturerRoutesModule {
}