mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 14:33:03 +00:00
16 lines
319 B
TypeScript
16 lines
319 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ds-community-list-page',
|
|
templateUrl: './community-list-page.component.html',
|
|
styleUrls: ['./community-list-page.component.scss']
|
|
})
|
|
export class CommunityListPageComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|