diff --git a/src/stories/CardElement.stories.ts b/src/stories/CardElement.stories.ts index 1b7c82f..05301ad 100644 --- a/src/stories/CardElement.stories.ts +++ b/src/stories/CardElement.stories.ts @@ -158,3 +158,24 @@ export const NotClickable: Story = { to: undefined, }, }; + +export const MultipleCards: Story = { + decorators: [ + () => ({ + template: ` +
+ + + + + + + +
+ `, + }), + ], + args: { + ...NotClickable.args, + }, +};