mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 12:15:20 +08:00
13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
import { AbstractInput } from 'Component/AbstractInput';
|
|
|
|
export class TextAreaComponent extends AbstractInput {
|
|
/**
|
|
* @param {Object} params
|
|
*/
|
|
constructor(params) {
|
|
super(params);
|
|
|
|
this.rows = params.rows || 5;
|
|
this.spellcheck = !!params.spellcheck;
|
|
}
|
|
}
|