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.
22 lines
608 B
22 lines
608 B
5 months ago
|
import { NgModule } from '@angular/core';
|
||
|
import { SharedModule } from '@app/shared/shared.module';
|
||
|
import { BasicRoutingModule } from './basic-routing.module';
|
||
|
import { TemplatesModule } from '../.templates/templates.module';
|
||
|
import { RoleComponent } from './role/role.component';
|
||
|
import { RoleMenuComponent } from './role/menu/menu.component';
|
||
|
import { UserComponent } from './user/user.component';
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
RoleComponent,
|
||
|
RoleMenuComponent,
|
||
|
UserComponent
|
||
|
],
|
||
|
imports: [
|
||
|
SharedModule,
|
||
|
BasicRoutingModule,
|
||
|
TemplatesModule
|
||
|
]
|
||
|
})
|
||
|
export class BasicModule { }
|