mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
11 lines
404 B
JavaScript
11 lines
404 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 };
|