简体   繁体   中英

how to type props for text area react typescript

I have a react component that looks like this:

import { TextareaHTMLAttributes} from 'react'
import styled from 'styled-components'

const TextAreaElement = styled.textarea`
  border-radius: 40px;
  border: none;
  background: white;
`

const TextArea = (props: TextareaHTMLAttributes<any>) => {  <--- replace <any> here
  return <TextAreaElement {...props} />
}

I know I can do something like this, but would rather not have to add every prop manually:

const TextArea = ({placeholder} : {placeholder: string}) => {
  return <TextAreaElement placeholder={placeholder} />
}

You can pass the props as regular HTML element

import React from "react";

const CustomTA = (props: React.HTMLProps<HTMLTextAreaElement>) => {
  return <textarea {...props} />;
};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM