RLH-15 - Implement Input component

This commit is contained in:
2024-11-04 09:32:11 +01:00
parent ec27ad7ee2
commit ddfe5e7f02
6 changed files with 114 additions and 0 deletions

View File

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