Drop unused TextAreaComponent

This commit is contained in:
the-djmaze
2022-09-20 12:29:27 +02:00
parent e35fbea415
commit d69e45f7bf
3 changed files with 0 additions and 19 deletions

View File

@@ -1,12 +0,0 @@
import { AbstractInput } from 'Component/AbstractInput';
export class TextAreaComponent extends AbstractInput {
/**
* @param {Object} params
*/
constructor(params) {
super(params);
this.rows = params.rows || 5;
}
}