import { type Meta, type StoryFn, type StoryObj } from '@storybook/react' import { Button } from '~/src/components/Button' import { ToastProvider, useToast } from './Toast' import { type ToastOptions, type ToastProps, type ToastProviderProps, } from './Toast.types' const meta: Meta = { component: ToastProvider, } function ToastContent(options: ToastOptions) { const toast = useToast() return (