mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 05:53:03 +00:00

# Conflicts: # package.json # src/app/app.component.html # src/app/app.component.ts # src/app/core/cache/request-cache.reducer.spec.ts # src/app/core/cache/request-cache.service.spec.ts # src/app/core/core.module.ts # src/app/shared/shared.module.ts
35 lines
826 B
TypeScript
Executable File
35 lines
826 B
TypeScript
Executable File
import { NgModule } from '@angular/core';
|
|
|
|
import { CoreModule } from './core/core.module';
|
|
import { HomeModule } from './home/home.module';
|
|
import { ItemPageModule } from './item-page/item-page.module';
|
|
|
|
import { SharedModule } from './shared/shared.module';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { HeaderComponent } from './header/header.component';
|
|
import { PageNotFoundComponent } from './pagenotfound/pagenotfound.component';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
HeaderComponent,
|
|
PageNotFoundComponent,
|
|
],
|
|
imports: [
|
|
SharedModule,
|
|
HomeModule,
|
|
ItemPageModule,
|
|
CoreModule.forRoot(),
|
|
AppRoutingModule
|
|
],
|
|
providers: [
|
|
]
|
|
})
|
|
export class AppModule {
|
|
}
|
|
|
|
export { AppComponent } from './app.component';
|