import { ComponentStory, ComponentMeta } from '@storybook/react'; import { SafeAreaProvider } from 'react-native-safe-area-context'; import { BrowserRouter } from 'react-router-dom'; import { BottomAction } from './index'; export default { title: 'App Components/ChatInput/BottomAction ', component: BottomAction, argTypes: { variant: { options: ['message', 'comment'], control: { type: 'select' }, }, }, } as ComponentMeta; export const Interactive: ComponentStory = (args) => { return ( ); }; Interactive.args = { variant: 'message', };