I'm using Storybook with React, and trying to add storybook select control with default value, but with no success. There's nothing about that in documentation.
I need one of the options above to be selected by default.
argTypes: {
iconSrc: {
options: Object.keys(iconTypes),
mapping: iconTypes,
control: {
sort: 'requiredFirst',
type: 'select',
labels: {
BlueStep: 'Blue Step',
Step: 'Step',
Globe: 'Globe',
},
},
},
}