function SearchBar() {
return <input />;
}
const panel = getPanel();
Object.assign(panel.wrapper.style, {
top: "10vh",
left: "10vw",
});
panel.setMovable(true);
panel.show();
render(SearchBar, panel.body);
this shows the panel correctly and it is moveable, but I cannot click into the input text nor can I enter text into it.
this shows the panel correctly and it is moveable, but I cannot click into the input text nor can I enter text into it.