diff options
author | Sebastian <sebasjm@gmail.com> | 2023-05-19 13:26:47 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-05-19 13:26:47 -0300 |
commit | 0544b8358af68df87dbc472221d8c0842c2b2db0 (patch) | |
tree | 14c7a931cf3bf79a1e9e39cc6b177dd0a4374ba2 /packages/exchange-backoffice-ui/src/handlers/InputText.tsx | |
parent | 35cc13e229ddc4953a1e68b6b7ea18c54eb9a70b (diff) |
accounts and notifications
Diffstat (limited to 'packages/exchange-backoffice-ui/src/handlers/InputText.tsx')
-rw-r--r-- | packages/exchange-backoffice-ui/src/handlers/InputText.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/exchange-backoffice-ui/src/handlers/InputText.tsx b/packages/exchange-backoffice-ui/src/handlers/InputText.tsx index 107d87860..014730d92 100644 --- a/packages/exchange-backoffice-ui/src/handlers/InputText.tsx +++ b/packages/exchange-backoffice-ui/src/handlers/InputText.tsx @@ -1,6 +1,6 @@ import { VNode, h } from "preact"; import { InputLine, UIFormProps } from "./InputLine.js"; -export function InputText(props: UIFormProps<string>): VNode { +export function InputText<T>(props: UIFormProps<T>): VNode { return <InputLine type="text" {...props} />; } |