mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
Footer component
This commit is contained in:
18
src/app/core/core.module.ts
Normal file
18
src/app/core/core.module.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
import { SharedModule } from '../shared/shared.module';
|
||||
|
||||
import { FooterComponent } from './footer/footer.component';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule, // we use ngFor
|
||||
SharedModule
|
||||
],
|
||||
exports: [FooterComponent],
|
||||
declarations: [FooterComponent],
|
||||
providers: []
|
||||
})
|
||||
|
||||
export class CoreModule { }
|
Reference in New Issue
Block a user