From a2cb00a0fedb817abe7012a5fda910edc44dc389 Mon Sep 17 00:00:00 2001 From: Philip Blyth Date: Tue, 10 Apr 2018 14:52:16 -0400 Subject: [PATCH] Fixed addon Knobs' `selectV2` example's `defaultValue` --- addons/knobs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/knobs/README.md b/addons/knobs/README.md index 6397b6fa79d..d494539ac98 100644 --- a/addons/knobs/README.md +++ b/addons/knobs/README.md @@ -311,7 +311,7 @@ const options = { Rainbow: ['red', 'orange', 'etc'], None: null, }; -const defaultValue = 'Red'; +const defaultValue = 'red'; const groupId = 'GROUP-ID1'; const value = selectV2(label, options, defaultValue, groupId);