From 23f1a8aa6fc5fa2cb7f360519cf3d35a2c6abe67 Mon Sep 17 00:00:00 2001 From: Brokyeom Date: Mon, 21 Oct 2024 18:10:25 +0900 Subject: [PATCH] publish storybook --- apps/docs/src/stories/Skeleton.stories.tsx | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/apps/docs/src/stories/Skeleton.stories.tsx b/apps/docs/src/stories/Skeleton.stories.tsx index 32946d5..9f543a0 100644 --- a/apps/docs/src/stories/Skeleton.stories.tsx +++ b/apps/docs/src/stories/Skeleton.stories.tsx @@ -1,9 +1,10 @@ -import { Skeleton, SkeletonProps } from '@sopt-makers/ui'; +import { Skeleton, SkeletonProps, Button as MDSButton, Toggle } from '@sopt-makers/ui'; import { Meta, StoryObj } from '@storybook/react'; const meta: Meta = { title: 'Components/Skeleton', component: Skeleton, + tags: ['autodocs'], }; export default meta; @@ -19,3 +20,18 @@ export const Circular: StoryObj = { return ; }, }; + +export const Button: StoryObj = { + render: () => { + return ( +
+ + 버튼버튼버튼 + + + + +
+ ); + }, +};