diff options
author | Sebastian <sebasjm@gmail.com> | 2023-05-15 11:45:23 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-05-15 11:45:23 -0300 |
commit | f4f798b1b4bae3073b669a562fd2b3a7880dffc3 (patch) | |
tree | 90211e3188cf9d33f0fc468bca8f039cd89b313e /packages/exchange-backoffice-ui/src/handlers/InputText.tsx | |
parent | db03383325063b9388c7ffa583485c3cff2b25eb (diff) |
second form
Diffstat (limited to 'packages/exchange-backoffice-ui/src/handlers/InputText.tsx')
-rw-r--r-- | packages/exchange-backoffice-ui/src/handlers/InputText.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/exchange-backoffice-ui/src/handlers/InputText.tsx b/packages/exchange-backoffice-ui/src/handlers/InputText.tsx new file mode 100644 index 000000000..107d87860 --- /dev/null +++ b/packages/exchange-backoffice-ui/src/handlers/InputText.tsx @@ -0,0 +1,6 @@ +import { VNode, h } from "preact"; +import { InputLine, UIFormProps } from "./InputLine.js"; + +export function InputText(props: UIFormProps<string>): VNode { + return <InputLine type="text" {...props} />; +} |