Skip to content

Commit

Permalink
test: Skeleton 스토리북 제작
Browse files Browse the repository at this point in the history
  • Loading branch information
bottlewook committed Jan 20, 2024
1 parent 42ba59d commit a1034fb
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/components/shared/skeleton/Skeleton.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import type { Meta, StoryObj } from '@storybook/react';

import Skeleton from './Skeleton';

const meta = {
title: 'Shared/Skeleton',
component: Skeleton,
parameters: {
},
tags: ['autodocs'],
argTypes: {

},
} satisfies Meta<typeof Skeleton>;

export default meta;
type Story = StoryObj<typeof meta>;

export const t1: Story = {
args: {
width: 300,
height: 200,
},
};

0 comments on commit a1034fb

Please sign in to comment.