From 3956ffbb4dba88982ffb20fc0ce097e5501002e1 Mon Sep 17 00:00:00 2001 From: "Soohyun, Chae" Date: Fri, 3 Mar 2023 10:35:28 +0900 Subject: [PATCH] Update README.md Same issue as #14 --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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" } ]; ```