diff --git a/README.md b/README.md index 1bbb5e8..029470f 100644 --- a/README.md +++ b/README.md @@ -278,19 +278,19 @@ const options = [ { label: "Mammal", options: [ - { value: "Dolphin", labe: "🐬 Dolphin" }, - { value: "Giraffe", labe: "🦒 Giraffe" } + { value: "Dolphin", label: "🐬 Dolphin" }, + { value: "Giraffe", label: "🦒 Giraffe" } ] }, { label: "Carnivore", options: [ - { value: "Tiger", labe: "🐅 Tiger" }, - { value: "Lion", labe: "🦁 Lion" } + { value: "Tiger", label: "🐅 Tiger" }, + { value: "Lion", label: "🦁 Lion" } ] }, // 👉 You can put the grouped and ungrouped options together - { value: "Zombie", labe: "🧟 Zombie" } + { value: "Zombie", label: "🧟 Zombie" } ]; ```