forked from hazza/dspace-angular
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