mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-23 22:36:01 +08:00
12 lines
399 B
JavaScript
12 lines
399 B
JavaScript
|
|
import {view, ViewType} from 'Knoin/Knoin';
|
|
import {AbstractSystemDropDownUserView} from 'View/User/AbstractSystemDropDown';
|
|
|
|
@view({
|
|
name: 'View/User/Settings/SystemDropDown',
|
|
type: ViewType.Right,
|
|
templateID: 'SystemDropDown'
|
|
})
|
|
class SystemDropDownSettingsUserView extends AbstractSystemDropDownUserView {}
|
|
|
|
export {SystemDropDownSettingsUserView, SystemDropDownSettingsUserView as default};
|