mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 08:48:03 +08:00
11 lines
400 B
JavaScript
11 lines
400 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 };
|