在导入的组件上方附加div

时间:2018-08-09 07:44:52

标签: javascript reactjs

我正在使用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。某处

enter image description here

有什么建议或想法,我该怎么做?

0 个答案:

没有答案