mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
22 lines
452 B
TypeScript
Executable File
22 lines
452 B
TypeScript
Executable File
import { NgModule } from '@angular/core';
|
|
import { HomeModule } from './home/home.module';
|
|
|
|
import { SharedModule } from './shared/shared.module';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [ AppComponent ],
|
|
imports: [
|
|
SharedModule,
|
|
HomeModule,
|
|
AppRoutingModule
|
|
]
|
|
})
|
|
export class AppModule {
|
|
}
|
|
|
|
export { AppComponent } from './app.component';
|