How would I add scroll bars to a paragraph in the plugin UI?
Here is my code:
var messageParagraph = h("p", { textContent:"", style: { height: 100, overflow:"scroll", border:"1px solid red"} );
var label = document.createElement("span");
label = h("span", { style: { } }, message),
messageParagraph.appendChild(label);