mirror of
https://github.com/jaandrle/deka-dom-el
synced 2025-04-04 20:55:53 +02:00
🐛 🔤 Renames Option
to OptionComponent
This commit is contained in:
parent
6f8e8c828c
commit
513c32eb37
@ -30,12 +30,12 @@ function HelloWorldComponent(){
|
|||||||
el("select", {
|
el("select", {
|
||||||
onchange: event=> emoji(event.target.value),
|
onchange: event=> emoji(event.target.value),
|
||||||
}).append(
|
}).append(
|
||||||
el(Option, "🎉", isSelected),
|
el(OptionComponent, "🎉", isSelected),
|
||||||
el(Option, "🚀", isSelected),
|
el(OptionComponent, "🚀", isSelected),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
function Option({ textContent }){
|
function OptionComponent({ textContent }){
|
||||||
return el("option", { value: textContent, textContent })
|
return el("option", { value: textContent, textContent })
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user