We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6f0fed commit 9cdaf37Copy full SHA for 9cdaf37
Sources/DOMKitDemo/main.swift
@@ -3,9 +3,9 @@ import JavaScriptKit
3
4
let document = globalThis.document
5
6
-let header = HTMLElement(from: document.createElement(localName: "h1"))!
7
-header.innerText = "Hello World!"
8
-_ = document.body!.appendChild(node: header)
+let button = HTMLElement(from: document.createElement(localName: "button"))!
+button.innerText = "Hello World!"
+_ = document.body!.appendChild(node: button)
9
10
console.log(data: "Hello, world!")
11
0 commit comments