Removed User About Screen, it is unused

This commit is contained in:
djmaze 2020-08-24 21:05:32 +02:00
parent e3e5929b21
commit 496c8f59ae
4 changed files with 0 additions and 44 deletions

View file

@ -1,20 +0,0 @@
import ko from 'ko';
import * as Settings from 'Storage/Settings';
import { view, ViewType } from 'Knoin/Knoin';
import { AbstractViewNext } from 'Knoin/AbstractViewNext';
@view({
name: 'View/User/About',
type: ViewType.Center,
templateID: 'About'
})
class AboutUserView extends AbstractViewNext {
constructor() {
super();
this.version = ko.observable(Settings.appSettingsGet('version'));
}
}
export { AboutUserView, AboutUserView as default };