Skip to content

Commit

Permalink
refactor: CardDisplay 스토리북 내 Wrapper Vstack 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
bytrustu committed Mar 3, 2024
1 parent a19f41d commit 744fe8d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/CardDisplay/CardDisplay.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { Meta, StoryObj } from '@storybook/react';
import { CardDisplay } from './CardDisplay';
import { AppLayout } from '@/components';
import { VStack } from '@/shared/components';
import { styleToken } from '@/shared/styles';

const meta: Meta<typeof CardDisplay> = {
Expand All @@ -14,7 +15,9 @@ const meta: Meta<typeof CardDisplay> = {
decorators: [
(Story) => (
<AppLayout>
<Story />
<VStack justifyContent="center" alignItems="center">
<Story />
</VStack>
</AppLayout>
),
],
Expand Down

0 comments on commit 744fe8d

Please sign in to comment.