mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-16 03:18:45 +00:00
12 lines
434 B
TypeScript
12 lines
434 B
TypeScript
![]() |
import Component from '@ember/component';
|
||
|
// @ts-ignore: Ignore import of compiled template
|
||
|
import template from '../templates/components/entity-list-container-content';
|
||
|
import { layout } from '@ember-decorators/component';
|
||
|
|
||
|
/**
|
||
|
* This component is the content wrapper for the entity-list-container to be used with the
|
||
|
* generalized content
|
||
|
*/
|
||
|
@layout(template)
|
||
|
export default class EntityListContainerContent extends Component {}
|