1
0

#150 Initial grid/list view implementation

This commit is contained in:
Jonas Van Goolen
2017-10-26 09:38:27 +02:00
parent 16786a90ff
commit a704157c1f
58 changed files with 684 additions and 49 deletions

View File

@@ -0,0 +1,14 @@
import { Component, Input, Inject } from '@angular/core';
import { Community } from '../../core/shared/community.model';
import { ObjectGridElementComponent } from '../object-grid-element/object-grid-element.component';
import { gridElementFor} from '../grid-element-decorator';
@Component({
selector: 'ds-community-grid-element',
styleUrls: ['./community-grid-element.component.scss'],
templateUrl: './community-grid-element.component.html'
})
@gridElementFor(Community)
export class CommunityGridElementComponent extends ObjectGridElementComponent<Community> {}