From b2128609ac8159a14224deba399144b3400c8c20 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sun, 13 Nov 2016 08:16:12 +0100 Subject: Finally give in and use React, minor tweeks. Preact (a minimalistic React alternative) had too many bugs ... --- thirdparty/preact/src/vnode.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 thirdparty/preact/src/vnode.js (limited to 'thirdparty/preact/src/vnode.js') diff --git a/thirdparty/preact/src/vnode.js b/thirdparty/preact/src/vnode.js deleted file mode 100644 index 1c3f10e3d..000000000 --- a/thirdparty/preact/src/vnode.js +++ /dev/null @@ -1,14 +0,0 @@ -/** Virtual DOM Node */ -export function VNode(nodeName, attributes, children) { - /** @type {string|function} */ - this.nodeName = nodeName; - - /** @type {object|undefined} */ - this.attributes = attributes; - - /** @type {array|undefined} */ - this.children = children; - - /** Reference to the given key. */ - this.key = attributes && attributes.key; -} -- cgit v1.2.3