Skip to content

Commit

Permalink
fix(storybook): steps stories name
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWeb authored Jan 31, 2024
1 parent 69f8a9a commit c3fa24c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/Form/steps/src/Steps.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,16 @@ const Template: Story<StepsProps> = ({ classModifier, className, mode }) => (
</Steps>
);

export const OldStepsStory = Template.bind({}) as typeof Template;
OldStepsStory.storyName = 'Old Design Steps';
OldStepsStory.args = {
export const NewStepsStory = Template.bind({}) as typeof Template;
NewStepsStory.storyName = 'New Design Steps';
NewStepsStory.args = {
classModifier: '',
className: 'af-steps-new',
};

export const NewStepsStory = Template.bind({}) as typeof Template;
NewStepsStory.storyName = 'Old Design Steps';
NewStepsStory.args = {
export const OldStepsStory = Template.bind({}) as typeof Template;
OldStepsStory.storyName = 'Old Design Steps';
OldStepsStory.args = {
classModifier: '',
className: '',
};

0 comments on commit c3fa24c

Please sign in to comment.