Skip to content

Commit 7fc2154

Browse files
committed
feat(66): Stack 컴포넌트에 Stack 내보내기 추가 및 export 수정
1 parent dd7cea8 commit 7fc2154

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/ui/Stack/Stack.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export type StackProps<T extends ElementType> =
2626
* </Stack>
2727
* ```
2828
*/
29-
const Stack = <T extends ElementType = "div">({
29+
export const Stack = <T extends ElementType = "div">({
3030
as,
3131
className,
3232
direction,

src/components/ui/Stack/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { HStack, type StackProps, VStack } from "./Stack";
1+
export { HStack, Stack, type StackProps, VStack } from "./Stack";

0 commit comments

Comments
 (0)