{
const input = html`<input type=range min=0 max=100 step=1>`;
viewof x.addEventListener("input", () => {
input.value = viewof x.value;
});
input.addEventListener("input", () => {
viewof x.value = input.value;
viewof x.dispatchEvent(new CustomEvent("input"));
});
return input;
}