diff --git a/src/components/Tabs/Tabs.stories.tsx b/src/components/Tabs/Tabs.stories.tsx index 660b7114..ae0acc04 100644 --- a/src/components/Tabs/Tabs.stories.tsx +++ b/src/components/Tabs/Tabs.stories.tsx @@ -46,8 +46,12 @@ export const Basic: Story = { 끄적이는 참고하는 - 끄적이는 내용 - 참고하는 내용 + +
끄적이는 내용
+
+ +
참고하는 내용
+
), }; diff --git a/src/components/Tabs/TabsContent.tsx b/src/components/Tabs/TabsContent.tsx index 4f825117..1dac56a0 100644 --- a/src/components/Tabs/TabsContent.tsx +++ b/src/components/Tabs/TabsContent.tsx @@ -12,7 +12,7 @@ const TabsContent = ({ }: PropsWithChildren) => { const { selectedTab } = useTabsContext(); - return
{selectedTab === value ? children : null}
; + return <>{selectedTab === value ? children : null}; }; export default TabsContent;