import { ComponentMeta } from '@storybook/react'; import { Tabs } from '@tih/ui'; import React, { useState } from 'react'; export default { title: 'Tabs', component: Tabs, argTypes: { label: { control: 'text', }, }, } as ComponentMeta; export function Basic({ label }) { const [value, setValue] = useState('apple'); return ( ); } Basic.args = { label: 'Fruits Navigation', };