25 lines
615 B
TypeScript
25 lines
615 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { UserProfileComponent } from './user-profile.component';
|
|
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
|
|
import { BreadcrumbModule } from 'src/app/_layout/breadcrumb/breadcrumb.module';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
|
|
|
|
@NgModule({
|
|
declarations: [UserProfileComponent],
|
|
imports: [
|
|
CommonModule,
|
|
NgbModule,
|
|
BreadcrumbModule,
|
|
RouterModule.forChild([
|
|
{
|
|
path: '',
|
|
component: UserProfileComponent
|
|
},
|
|
])
|
|
]
|
|
})
|
|
export class UserProfileModule { }
|