import React from "react"; import { TextContent, Text, TextVariants, ButtonVariant, } from "@patternfly/react-core"; import { Meta, Story } from "@storybook/react"; import { action } from "@storybook/addon-actions"; import { ConfirmDialogModal, ConfirmDialogModalProps, useConfirmDialog, } from "../components/confirm-dialog/ConfirmDialog"; export default { title: "Confirmation Dialog", component: ConfirmDialogModal, } as Meta; const Template: Story = (args) => ( ); export const Simple = Template.bind({}); Simple.args = { titleKey: "Delete app02?", messageKey: "If you delete this client, all associated data will be removed.", continueButtonLabel: "Delete", continueButtonVariant: ButtonVariant.danger, }; export const Children = Template.bind({}); Children.args = { titleKey: "Children as content!", continueButtonVariant: ButtonVariant.primary, children: ( <> Hello World

Example of some other patternfly components.

), }; const Test = () => { const [toggle, Dialog] = useConfirmDialog({ titleKey: "Delete app02?", messageKey: "If you delete this client, all associated data will be removed.", continueButtonLabel: "Delete", onConfirm: action("confirm"), onCancel: action("cancel"), }); return ( <> ); }; export const Api = () => ;