Skip to content

Commit

Permalink
test: DepositCheck 스토리북 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
soi-ha committed Sep 19, 2024
1 parent 4ccc72d commit 9328178
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import type {Meta, StoryObj} from '@storybook/react';

import DepositCheck from '@HDcomponents/DepositCheck/DepositCheck';

const meta = {
title: 'Components/DepositCheck',
component: DepositCheck,
tags: ['autodocs'],
parameters: {
layout: 'centered',
},
argTypes: {
isCheck: {
description: '',
control: {type: 'boolean'},
},
},
args: {
isCheck: false,
},
} satisfies Meta<typeof DepositCheck>;

export default meta;

type Story = StoryObj<typeof meta>;

export const Playground: Story = {};

0 comments on commit 9328178

Please sign in to comment.