1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-04-03 20:35:53 +02:00

🐛 🔤 Renames Option to OptionComponent

This commit is contained in:
Jan Andrle 2024-12-10 15:43:15 +01:00
parent 6f8e8c828c
commit 513c32eb37
Signed by: jaandrle
GPG Key ID: B3A25AED155AFFAB

@ -30,12 +30,12 @@ function HelloWorldComponent(){
el("select", {
onchange: event=> emoji(event.target.value),
}).append(
el(Option, "🎉", isSelected),
el(Option, "🚀", isSelected),
el(OptionComponent, "🎉", isSelected),
el(OptionComponent, "🚀", isSelected),
)
);
}
function Option({ textContent }){
function OptionComponent({ textContent }){
return el("option", { value: textContent, textContent })
}
```