Update ColorStyleSegments.stories.tsx

This commit is contained in:
Nate Kelley 2025-03-31 17:30:26 -06:00
parent c51fe65868
commit 64bce766b9
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ const meta: Meta<typeof ColorStyleSegments> = {
}, },
//tags: ['autodocs'], //tags: ['autodocs'],
argTypes: { argTypes: {
initialSelectedSegment: { selectedSegment: {
control: 'select', control: 'select',
options: Object.values(ColorAppSegments), options: Object.values(ColorAppSegments),
description: 'The initially selected segment' description: 'The initially selected segment'
@ -34,12 +34,12 @@ type Story = StoryObj<typeof ColorStyleSegments>;
export const Default: Story = { export const Default: Story = {
args: { args: {
initialSelectedSegment: ColorAppSegments.Colorful selectedSegment: ColorAppSegments.Colorful
} }
}; };
export const MonochromeSelected: Story = { export const MonochromeSelected: Story = {
args: { args: {
initialSelectedSegment: ColorAppSegments.Monochrome selectedSegment: ColorAppSegments.Monochrome
} }
}; };