Skip to content

Commit 56a3865

Browse files
refactor(tailwind/Input): set default export
1 parent 2ad01a5 commit 56a3865

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tailwind/ui/Input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
3636
)
3737
Input.displayName = "Input"
3838

39-
export { Input }
39+
export default Input

tailwind/ui/__stories__/Input.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Meta, StoryObj } from "@storybook/react/*"
22

33
import { VStack } from "../../../src/components/ui/flex"
4-
import { Input } from "../Input"
4+
import Input from "../Input"
55

66
const meta = {
77
title: "Atoms / Form / ShadCN Input",

0 commit comments

Comments
 (0)