mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-10-09 21:26:03 +08:00
12 lines
395 B
JavaScript
12 lines
395 B
JavaScript
|
|
import {view, ViewType} from 'Knoin/Knoin';
|
|
import {AbstractSystemDropDownUserView} from 'View/User/AbstractSystemDropDown';
|
|
|
|
@view({
|
|
name: 'View/User/MailBox/SystemDropDown',
|
|
type: ViewType.Right,
|
|
templateID: 'SystemDropDown'
|
|
})
|
|
class SystemDropDownMailBoxUserView extends AbstractSystemDropDownUserView {}
|
|
|
|
export {SystemDropDownMailBoxUserView, SystemDropDownMailBoxUserView as default};
|