wallet-core/packages/exchange-backoffice-ui/src/handlers/InputText.tsx

7 lines
203 B
TypeScript
Raw Normal View History

2023-05-10 05:53:37 +02:00
import { VNode, h } from "preact";
import { InputLine, UIFormProps } from "./InputLine.js";
2023-05-19 18:26:47 +02:00
export function InputText<T>(props: UIFormProps<T>): VNode {
2023-05-10 05:53:37 +02:00
return <InputLine type="text" {...props} />;
}