diff --git a/src/ui/web/general/ListView.js b/src/ui/web/general/ListView.js index fb5be255..4bd14f7c 100644 --- a/src/ui/web/general/ListView.js +++ b/src/ui/web/general/ListView.js @@ -1,13 +1,5 @@ import {tag} from "./html.js"; -class UIView { - mount() {} - unmount() {} - update(_value) {} - // can only be called between a call to mount and unmount - root() {} -} - function insertAt(parentNode, idx, childNode) { const isLast = idx === parentNode.childElementCount; if (isLast) {