dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_HomePageModule cluster_HomePageModule_declarations cluster_HomePageModule_exports BreadcrumbsComponent BreadcrumbsComponent HomePageModule HomePageModule BreadcrumbsComponent->HomePageModule CategoriesComponent CategoriesComponent CategoriesComponent->HomePageModule ErrorPageComponent ErrorPageComponent ErrorPageComponent->HomePageModule OptionsViewComponent OptionsViewComponent OptionsViewComponent->HomePageModule ToolSelectionComponent ToolSelectionComponent ToolSelectionComponent->HomePageModule BreadcrumbsComponent BreadcrumbsComponent HomePageModule->BreadcrumbsComponent ErrorPageComponent ErrorPageComponent HomePageModule->ErrorPageComponent
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MaterializeModule } from 'angular2-materialize';

import { CategoriesComponent } from './categories/categories.component';
import { BreadcrumbsComponent } from './breadcrumbs/breadcrumbs.component';
import { ToolSelectionComponent } from './tool-selection/tool-selection.component';
import { OptionsViewComponent } from './options-view/options-view.component';
import { RouterModule } from '@angular/router';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { ErrorPageComponent } from './error-page/error-page.component';

@NgModule({
    imports: [
        CommonModule,
        RouterModule,
        MaterializeModule,
        FormsModule,
        ReactiveFormsModule
    ],
    exports: [
        BreadcrumbsComponent,
        FormsModule,
        ReactiveFormsModule,
        ErrorPageComponent
    ],
    declarations: [
        BreadcrumbsComponent,
        CategoriesComponent,
        ToolSelectionComponent,
        OptionsViewComponent,
        ErrorPageComponent
    ]
})
export class HomePageModule { }

results matching ""

    No results matching ""