tab-custom.module.ts 455 B

1234567891011121314151617181920
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { TabCustomRoutingModule } from './tab-custom-routing.module';
  4. import { TabCustomComponent } from './tab-custom.component';
  5. import { ShareModule } from 'src/app/share/share.module';
  6. @NgModule({
  7. declarations: [
  8. TabCustomComponent
  9. ],
  10. imports: [
  11. CommonModule,
  12. TabCustomRoutingModule,
  13. ShareModule
  14. ]
  15. })
  16. export class TabCustomModule { }