From 513c32eb3717cff864e397231116da3f4a275bd0 Mon Sep 17 00:00:00 2001 From: Jan Andrle Date: Tue, 10 Dec 2024 15:43:15 +0100 Subject: [PATCH] :bug: :abc: Renames `Option` to `OptionComponent` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 83be257..d0e3051 100644 --- a/README.md +++ b/README.md @@ -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 }) } ```