import { ComponentStory, ComponentMeta } from '@storybook/react'; import { Container } from 'components/layout'; import { SafeAreaProvider } from 'react-native-safe-area-context'; import { Action } from './index'; export default { title: 'App Components/ Calling / Action', component: Action, argTypes: { isSheetOpen: { control: { type: 'boolean' }, }, }, } as ComponentMeta; export const Interactive: ComponentStory = () => { return ( ); }; Interactive.args = {};