dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_WidgetModule cluster_WidgetModule_declarations cluster_WidgetModule_exports StateComponent StateComponent WidgetModule WidgetModule StateComponent->WidgetModule SwitchComponent SwitchComponent SwitchComponent->WidgetModule StateComponent StateComponent WidgetModule->StateComponent SwitchComponent SwitchComponent WidgetModule->SwitchComponent

File

src/app/component/widget/widget.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FlexLayoutModule } from '@angular/flex-layout';
import { MatIconModule } from '@angular/material/icon';
import { StateComponent } from './state/state.component';
import { SwitchComponent } from './switch/switch.component';

@NgModule({
  imports: [CommonModule, FlexLayoutModule, MatIconModule],
  declarations: [StateComponent, SwitchComponent],
  exports: [StateComponent, SwitchComponent]
})
export class WidgetModule {}

result-matching ""

    No results matching ""