mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-03 04:25:53 +02:00
7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
import { el } from "deka-dom-el";
|
|
|
|
// Using events with HTML attribute style
|
|
el("button", {
|
|
textContent: "click me",
|
|
"=onclick": "console.log(event)"
|
|
}); |