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
610 B

  1. import { NgModule } from '@angular/core';
  2. import { ReactiveFormsModule } from '@angular/forms';
  3. import { CommonModule } from '@angular/common';
  4. import { UsersRoutingModule } from './users-routing.module';
  5. import { LayoutComponent } from './layout.component';
  6. import { ListComponent } from './list.component';
  7. import { AddEditComponent } from './add-edit.component';
  8. @NgModule({
  9. imports: [
  10. CommonModule,
  11. ReactiveFormsModule,
  12. UsersRoutingModule
  13. ],
  14. declarations: [
  15. LayoutComponent,
  16. ListComponent,
  17. AddEditComponent
  18. ]
  19. })
  20. export class UsersModule { }