datahub/datahub-web/@datahub/shared/addon/components/lists/entity-list-container-content.ts
Charlie Tran 5072ef013c
feat(frontend): Module consolidation - clean up for OS logic - init virtual assistant (#1821)
* Module consolidation on datahub-web - clean up to some OS logic from previous update - initial implementation of virtual assistant

* Fix accidental change to datahub user module license
2020-08-28 10:31:15 -07:00

12 lines
443 B
TypeScript

import Component from '@ember/component';
// @ts-ignore: Ignore import of compiled template
import template from '../../templates/components/lists/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 {}