我正在使用chat bot UI framework,它有自己的jsx / html / design。现在在输入区域上方(或在div上方说),我想添加一个自定义组件。
在Javascript中,我们可以像这样在div上附加一些内容
var node = document.createElement("LI"); // Create a <li> node
var textnode = document.createTextNode("Water"); // Create a text node
node.appendChild(textnode); // Append the text to <li>
document.getElementById("myList").appendChild(node); // Append <li> to <ul> with id="myList"
在我导入react-simple-chat bot的react中,我想在输入区域上方添加一个div。某处
有什么建议或想法,我该怎么做?