Skip to content

Commit

Permalink
#5385 date.DayViewComponent: base class
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiu committed Apr 9, 2024
1 parent 64f288c commit e90a725
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/date/DayViewComponent.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import Base from '../component/Base.mjs';

/**
* @class Neo.date.DayViewComponent
* @extends Neo.component.Base
*/
class DayViewComponent extends Base {
static config = {
/**
* @member {String} className='Neo.date.DayViewComponent'
* @protected
*/
className: 'Neo.date.DayViewComponent',
/**
* @member {Object} _vdom
*/
_vdom:
{}
}
}

Neo.setupClass(DayViewComponent);

export default DayViewComponent;

0 comments on commit e90a725

Please sign in to comment.