You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
635 B
19 lines
635 B
3 years ago
|
import { NgModule } from '@angular/core';
|
||
|
import { CommonModule } from '@angular/common';
|
||
|
import { SystemRoutingModule } from './system-management-routing.module';
|
||
|
import { OrganizationComponent } from './organization/organization.component';
|
||
|
import { UserComponent } from './user/user.component';
|
||
|
import { RoleComponent } from './role/role.component';
|
||
|
import { NavigationComponent } from './navigation/navigation.component';
|
||
|
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [OrganizationComponent, UserComponent, RoleComponent, NavigationComponent],
|
||
|
imports: [
|
||
|
CommonModule,
|
||
|
SystemRoutingModule
|
||
|
]
|
||
|
})
|
||
|
export class SystemManagementModule { }
|