mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 20:43:08 +00:00
16 lines
734 B
TypeScript
16 lines
734 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { Community } from '../../../core/shared/community.model';
|
|
import { AbstractListableElementComponent } from '../../object-collection/shared/object-collection-element/abstract-listable-element.component';
|
|
import { renderElementsFor } from '../../object-collection/shared/dso-element-decorator';
|
|
import { ViewMode } from '../../../core/shared/view-mode.model';
|
|
|
|
@Component({
|
|
selector: 'ds-community-grid-element',
|
|
styleUrls: ['./community-grid-element.component.scss'],
|
|
templateUrl: './community-grid-element.component.html'
|
|
})
|
|
|
|
@renderElementsFor(Community, ViewMode.GridElement)
|
|
export class CommunityGridElementComponent extends AbstractListableElementComponent<Community> {}
|