diff --git a/app/components/textarea/index.tsx b/app/components/textarea/index.tsx index 1c6a9e67..f79ea0e6 100644 --- a/app/components/textarea/index.tsx +++ b/app/components/textarea/index.tsx @@ -1,6 +1,6 @@ import React from "react"; -interface Props { +interface Properties { label: string; name: string; value: string; @@ -11,7 +11,7 @@ interface Props { style?: React.CSSProperties; } -export const TextAreaField: React.FC = ({ +export const TextAreaField: React.FC = ({ label, name, placeholder,