import { Meta, StoryObj } from '@storybook/react' import { useToastController } from '@tamagui/toast' import { Button, XStack } from 'tamagui' import { CustomToast } from './CustomToast' const meta: Meta = { title: 'ui/Toast', parameters: { layout: 'fullscreen' }, component: function ToastTrigger() { const toastController = useToastController() return ( ) }, } type Story = StoryObj export const Basic: Story = {} export default meta