diff --git a/packages/react/stories/Tabs.stories.tsx b/packages/react/stories/Tabs.stories.tsx deleted file mode 100644 index f51b520..0000000 --- a/packages/react/stories/Tabs.stories.tsx +++ /dev/null @@ -1,63 +0,0 @@ -import { Button } from "../components/Button"; -import { - TabContent, - TabList, - TabProvider, - TabTrigger, -} from "../components/Tabs"; - -export default { - title: "React/Tabs", - decorators: [ - (Story: any) => {Story()}, - ], - parameters: { - layout: "centered", - }, -}; - -export const Default = () => { - return ( - <> -
- - Tab 1 - Tab 2 - - -
Tab 1 Content
-
- -
Tab 2 Content
-
-
- - ); -}; - -export const AsChild = () => { - return ( - <> -
- - - - - - - - - -
Tab 1 Content
-
- -
Tab 2 Content
-
-
- - ); -};