|
- import {NgModule} from "@angular/core";
- import {CommonModule} from "@angular/common";
- import {SharedMaterialModule} from "../shared-material.module";
- import {RouterModule} from "@angular/router";
- import { LayoutComponent } from './layout/layout.component';
-
-
-
- @NgModule({
- declarations: [
- LayoutComponent
- ],
- imports: [
- CommonModule,
- SharedMaterialModule,
- RouterModule,
- ],
- exports: [
- LayoutComponent
- ],
- providers: []
- })
- export class SharedComponentModule {
- }
|