feat: add control to form stepper story

This commit is contained in:
RadoslavDimchev 2023-10-09 17:35:59 +03:00
parent c119e1ba27
commit f462ab08d9

View File

@ -9,6 +9,13 @@ const meta = {
layout: 'centered',
},
tags: ['autodocs'],
argTypes: {
activeStep: {
options: [0, 1, 2, 3, 4, 5],
control: { type: 'radio' },
defaultValue: 0,
},
},
} satisfies Meta<typeof FormStepper>
export default meta