mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 12:33:07 +00:00
16 lines
726 B
TypeScript
16 lines
726 B
TypeScript
import { Component, Input, Inject } 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 { SetViewMode } from '../../view-mode';
|
|
|
|
@Component({
|
|
selector: 'ds-community-grid-element',
|
|
styleUrls: ['./community-grid-element.component.scss'],
|
|
templateUrl: './community-grid-element.component.html'
|
|
})
|
|
|
|
@renderElementsFor(Community, SetViewMode.Grid)
|
|
export class CommunityGridElementComponent extends AbstractListableElementComponent<Community> {}
|