implemented editable help

This commit is contained in:
VLE2FE
2020-09-03 10:53:41 +02:00
parent bda6331c59
commit 2dc962c754
7 changed files with 90 additions and 18 deletions

View File

@ -0,0 +1,7 @@
import { HelpModel } from './help.model';
describe('Help.Model', () => {
it('should create an instance', () => {
expect(new HelpModel()).toBeTruthy();
});
});

View File

@ -0,0 +1,6 @@
import {BaseModel} from './base.model';
export class HelpModel extends BaseModel {
text = '';
level = 'none';
}