8 lines
231 B
TypeScript
8 lines
231 B
TypeScript
|
import { Validator } from "../ValidatedTextField"
|
||
|
|
||
|
export default class TextValidator extends Validator {
|
||
|
constructor() {
|
||
|
super("text", "A longer piece of text. Uses an textArea instead of a textField", "text")
|
||
|
}
|
||
|
}
|