mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-06-29 07:16:07 +00:00
13 lines
399 B
JavaScript
13 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};
|