dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_SharedModule cluster_SharedModule_exports cluster_SharedModule_declarations ErrorDialogComponent ErrorDialogComponent SharedModule SharedModule ErrorDialogComponent->SharedModule FooterComponent FooterComponent FooterComponent->SharedModule MenuSelectionDirective MenuSelectionDirective MenuSelectionDirective->SharedModule MenuToggleDirective MenuToggleDirective MenuToggleDirective->SharedModule SafePipe SafePipe SafePipe->SharedModule SidebarComponent SidebarComponent SidebarComponent->SharedModule TokenRatioPipe TokenRatioPipe TokenRatioPipe->SharedModule TopbarComponent TopbarComponent TopbarComponent->SharedModule FooterComponent FooterComponent SharedModule->FooterComponent MenuSelectionDirective MenuSelectionDirective SharedModule->MenuSelectionDirective SafePipe SafePipe SharedModule->SafePipe SidebarComponent SidebarComponent SharedModule->SidebarComponent TokenRatioPipe TokenRatioPipe SharedModule->TokenRatioPipe TopbarComponent TopbarComponent SharedModule->TopbarComponent
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TopbarComponent } from '@app/shared/topbar/topbar.component';
import { FooterComponent } from '@app/shared/footer/footer.component';
import { SidebarComponent } from '@app/shared/sidebar/sidebar.component';
import { MenuSelectionDirective } from '@app/shared/_directives/menu-selection.directive';
import { MenuToggleDirective } from '@app/shared/_directives/menu-toggle.directive';
import {RouterModule} from '@angular/router';
import {MatIconModule} from '@angular/material/icon';
import {TokenRatioPipe} from '@app/shared/_pipes/token-ratio.pipe';
import { ErrorDialogComponent } from '@app/shared/error-dialog/error-dialog.component';
import {MatDialogModule} from '@angular/material/dialog';
import { SafePipe } from '@app/shared/_pipes/safe.pipe';



@NgModule({
  declarations: [
    TopbarComponent,
    FooterComponent,
    SidebarComponent,
    MenuSelectionDirective,
    MenuToggleDirective,
    TokenRatioPipe,
    ErrorDialogComponent,
    SafePipe
  ],
  exports: [
    TopbarComponent,
    FooterComponent,
    SidebarComponent,
    MenuSelectionDirective,
    TokenRatioPipe,
    SafePipe
  ],
  imports: [
    CommonModule,
    RouterModule,
    MatIconModule,
    MatDialogModule,
  ]
})
export class SharedModule { }

result-matching ""

    No results matching ""