import { ComponentMeta } from "@storybook/react"; import { Toaster } from "react-hot-toast"; import { Button, showToast } from "@calcom/ui/v2"; export default { title: "Notifcations-Toasts", decorators: [ (Story) => ( <> ), ], } as ComponentMeta; // We have to fake this type as the story for this component isn't really a component. export const All = () => (
);