mirror of
https://github.com/RainLoop/rainloop-webmail.git
synced 2026-02-05 11:34:54 +01:00
13 lines
395 B
JavaScript
13 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};
|