From d3eb862aba388dd5500c1a1d18d903ecd3c76afe Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 21 Sep 2025 00:39:58 +0000 Subject: [PATCH] Update dom.js --- dom.js.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dom.js.md b/dom.js.md index f1b0609..d336a4d 100644 --- a/dom.js.md +++ b/dom.js.md @@ -19,8 +19,8 @@ const myEl = el.div({ class:'alert' }, [ ```javascript const myButton = dom.create('button', { - type:"button", - class:"btn btn-primary", + "type": "button", + "class": "btn btn-primary", "on:click": () => doSomething() }, "Okay"); ```