mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 12:33:07 +00:00
39 lines
1.0 KiB
TypeScript
Executable File
39 lines
1.0 KiB
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 { CollectionPageModule } from './collection-page/collection-page.module';
|
|
import { CommunityPageModule } from './community-page/community-page.module';
|
|
import { PageNotFoundComponent } from './pagenotfound/pagenotfound.component';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
HeaderComponent,
|
|
PageNotFoundComponent,
|
|
],
|
|
imports: [
|
|
SharedModule,
|
|
HomeModule,
|
|
ItemPageModule,
|
|
CollectionPageModule,
|
|
CommunityPageModule,
|
|
CoreModule.forRoot(),
|
|
AppRoutingModule
|
|
],
|
|
providers: [
|
|
]
|
|
})
|
|
export class AppModule {
|
|
}
|
|
|
|
export { AppComponent } from './app.component';
|