aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/handlers/InputTextArea.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/exchange-backoffice-ui/src/handlers/InputTextArea.tsx')
-rw-r--r--packages/exchange-backoffice-ui/src/handlers/InputTextArea.tsx8
1 files changed, 0 insertions, 8 deletions
diff --git a/packages/exchange-backoffice-ui/src/handlers/InputTextArea.tsx b/packages/exchange-backoffice-ui/src/handlers/InputTextArea.tsx
deleted file mode 100644
index 45229951e..000000000
--- a/packages/exchange-backoffice-ui/src/handlers/InputTextArea.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import { VNode, h } from "preact";
-import { InputLine, UIFormProps } from "./InputLine.js";
-
-export function InputTextArea<T extends object, K extends keyof T>(
- props: UIFormProps<T, K>,
-): VNode {
- return <InputLine type="text-area" {...props} />;
-}