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

7 lines
205 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";
export function InputText(props: UIFormProps<string>): VNode {
return <InputLine type="text" {...props} />;
}