This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
app.module.ts 1.36 KiB
Newer Older
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import './vendor';
import { GitsearchSharedModule } from 'app/shared/shared.module';
import { GitsearchCoreModule } from 'app/core/core.module';
import { GitsearchAppRoutingModule } from './app-routing.module';
import { GitsearchHomeModule } from './home/home.module';
import { GitsearchEntityModule } from './entities/entity.module';
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
// jhipster-needle-angular-add-module-import JHipster will add new module here
import { MainComponent } from './layouts/main/main.component';
import { NavbarComponent } from './layouts/navbar/navbar.component';
import { FooterComponent } from './layouts/footer/footer.component';
import { PageRibbonComponent } from './layouts/profiles/page-ribbon.component';
import { ActiveMenuDirective } from './layouts/navbar/active-menu.directive';
import { ErrorComponent } from './layouts/error/error.component';

@NgModule({
  imports: [
    BrowserModule,
    GitsearchSharedModule,
    GitsearchCoreModule,
    GitsearchHomeModule,
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
    // jhipster-needle-angular-add-module JHipster will add new module here
    GitsearchEntityModule,
    GitsearchAppRoutingModule,
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
  ],
  declarations: [MainComponent, NavbarComponent, ErrorComponent, PageRibbonComponent, ActiveMenuDirective, FooterComponent],
Lukas Kaltenbrunner's avatar
Lukas Kaltenbrunner committed
  bootstrap: [MainComponent],
})
export class GitsearchAppModule {}