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.

25 lines
498B

  1. import {NgModule} from "@angular/core";
  2. import {CommonModule} from "@angular/common";
  3. import {SharedMaterialModule} from "../shared-material.module";
  4. import {RouterModule} from "@angular/router";
  5. import { LayoutComponent } from './layout/layout.component';
  6. @NgModule({
  7. declarations: [
  8. LayoutComponent
  9. ],
  10. imports: [
  11. CommonModule,
  12. SharedMaterialModule,
  13. RouterModule,
  14. ],
  15. exports: [
  16. LayoutComponent
  17. ],
  18. providers: []
  19. })
  20. export class SharedComponentModule {
  21. }