import { ComponentStory, ComponentMeta } from '@storybook/react'; import { SafeAreaProvider } from 'react-native-safe-area-context'; import { Group } from './index'; export default { title: 'App Components/Room/Group Header', component: Group, argTypes: { status: { options: ['pending', 'downloading', 'downloaded'], control: { type: 'select' }, }, }, } as ComponentMeta; export const Interactive: ComponentStory = (args) => { return ( ); }; Interactive.args = {};