MapComplete/UI/InputElement/Validators/StringValidator.ts
Pieter Vander Vennet 41e6a2c760 More refactoring
2023-03-29 17:21:20 +02:00

8 lines
187 B
TypeScript

import { Validator } from "../ValidatedTextField"
export default class StringValidator extends Validator {
constructor() {
super("string", "A simple piece of text")
}
}