diff --git a/src/stories/general/Transition.stories.tsx b/src/stories/general/Transition.stories.tsx deleted file mode 100644 index 209d77a40..000000000 --- a/src/stories/general/Transition.stories.tsx +++ /dev/null @@ -1,49 +0,0 @@ -import React from "react"; - -import type { Meta, StoryObj } from "@storybook/react"; - -import { - DatePicker, - DateRangePicker, - MultiSelect, - MultiSelectItem, - NumberInput, - SearchSelect, - SearchSelectItem, - Select, - SelectItem, - TextInput, -} from "components"; - -const meta: Meta = { - title: "General", -}; - -export default meta; -type Story = StoryObj; - -// Stories -export const Transition: Story = { - render: () => { - return ( -
- - - - - Item 1 - Item 2 - - - Item 1 - Item 2 - - - -
- ); - }, -};