mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-06 22:04:16 +00:00
16 lines
265 B
TypeScript
16 lines
265 B
TypeScript
|
|
import Ember from 'ember';
|
||
|
|
|
||
|
|
const { Component } = Ember;
|
||
|
|
|
||
|
|
export default Component.extend({
|
||
|
|
tagName: 'empty-state',
|
||
|
|
|
||
|
|
classNames: ['empty-state'],
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Default heading for the empty state component
|
||
|
|
* @type {string}
|
||
|
|
*/
|
||
|
|
heading: 'No data found'
|
||
|
|
});
|