import React from 'react' import { View } from '@tarojs/components' import { TextArea } from '@nutui/nutui-react-taro' import './index.scss' interface TitleTextareaProps { value: string onChange: (value: string) => void maxLength?: number placeholder?: string } const TitleTextarea: React.FC = ({ value, onChange, maxLength = 20, placeholder = '好的标题更吸引人哦' }) => { return (