()
| 78 | |
| 79 | // 生成唯一ID |
| 80 | const generateId = () => { |
| 81 | return Date.now().toString(36) + Math.random().toString(36).substr(2) |
| 82 | } |
| 83 | |
| 84 | // 调整文本域高度的函数 |
| 85 | const adjustTextareaHeight = (e: React.ChangeEvent<HTMLTextAreaElement>) => { |
no outgoing calls
no test coverage detected