Skip to content

Commit

Permalink
test: Loading storybook 제작
Browse files Browse the repository at this point in the history
  • Loading branch information
bottlewook committed Jan 17, 2024
1 parent a913b39 commit 4ba7d3e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/components/details/Loading/Loading.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import type { Meta, StoryObj } from '@storybook/react';

import Loading from './Loading';

const meta = {
title: 'details/Loading',
component: Loading,
parameters: {
},
tags: ['autodocs'],
argTypes: {
},
} satisfies Meta<typeof Loading>;

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

export const defaultComponent: Story = {
args: {

},
};

0 comments on commit 4ba7d3e

Please sign in to comment.