diff --git a/src/shared/Textarea.tsx b/src/shared/Textarea.tsx new file mode 100644 index 0000000..7473636 --- /dev/null +++ b/src/shared/Textarea.tsx @@ -0,0 +1,22 @@ +import React, { TextareaHTMLAttributes } from "react"; + +export interface TextareaProps + extends TextareaHTMLAttributes {} + +// eslint-disable-next-line react/display-name +const Textarea = React.forwardRef( + ({ className = "", children, ...args }, ref) => { + return ( + + ); + } +); + +export default Textarea;