import * as React from 'react'; import ElixFormsReactAbstract from './ElixFormsReactAbstract'; export default class ElixFormsReact extends ElixFormsReactAbstract { public override createCustomFormFields(): React.ReactElement { // const textTest = this.CreateTextInput("COL0018", "TEXT INPUT"); // const checkTest = this.CreateCheckboxInput("COL0090", "CHECKBOX INPUT", new Map([ [1, "Option 1"], [2, "Option 2"], [3, "Option 3"] ])); // const radioTest = this.CreateRadioInput("COL0091", "RADIO INPUT", new Map([ [1, "Option 1"], [2, "Option 2"], [3, "Option 3"] ])); // const boolTest = this.CreateBooleanInput("COL0092", "BOOLEAN INPUT"); // const textareaTest = this.CreateTextAreaInput("COL0093", "TEXTAREA INPUT"); return (<>); } } export { ElixFormsReact };