diff --git a/src/Select/README.mdx b/src/Select/README.mdx index 7f22dacd..9e8cbf07 100644 --- a/src/Select/README.mdx +++ b/src/Select/README.mdx @@ -19,10 +19,45 @@ There are known issues around this pattern when using VoiceOver with Safari on m {() => { const [selectedValue, setSelectedValue] = React.useState(0); + const options = [ + 'Apple', + 'Apricot', + 'Banana', + 'Blueberry', + 'Cherry', + 'Fig', + 'Feijoa', + 'Gooseberry', + 'Jackfruit', + 'Jujube', + 'Kiwi', + 'Kumquat', + 'Lingonberry', + 'Lychee', + 'Mandarin', + 'Mango', + 'Melon', + 'Nectarine', + 'Orange', + 'Papaya', + 'Passion Fruit', + 'Pear', + 'Persimmon', + 'Physalis', + 'Pineapple', + 'Plum', + 'Pomegranate', + 'Pomelo', + 'Raspberry', + 'Starfruit', + 'Strawberry', + 'Watermelon', + 'Wumpa', + ]; return ( <> - Select time period + Select a fruit );