2014-10-18 21:43:44 +08:00
|
|
|
|
2016-09-02 04:41:36 +08:00
|
|
|
import {view, ViewType} from 'Knoin/Knoin';
|
2016-08-17 06:01:20 +08:00
|
|
|
import {AbstractSystemDropDownUserView} from 'View/User/AbstractSystemDropDown';
|
2016-06-30 08:02:45 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
@view({
|
2016-09-02 04:41:36 +08:00
|
|
|
name: 'View/User/Settings/SystemDropDown',
|
|
|
|
type: ViewType.Right,
|
|
|
|
templateID: 'SystemDropDown'
|
2016-08-17 06:01:20 +08:00
|
|
|
})
|
|
|
|
class SystemDropDownSettingsUserView extends AbstractSystemDropDownUserView {}
|
2016-06-30 08:02:45 +08:00
|
|
|
|
2016-08-17 06:01:20 +08:00
|
|
|
export {SystemDropDownSettingsUserView, SystemDropDownSettingsUserView as default};
|