import React from "react"; import type { Meta, StoryObj } from "@storybook/react"; import { createKcPageStory } from "../KcPageStory"; const { KcPageStory } = createKcPageStory({ pageId: "logout-confirm.ftl" }); const meta = { title: "login/logout-confirm.ftl", component: KcPageStory } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { render: () => }; /** * WithCustomLogoutMessage: * - Purpose: Tests when a custom message is displayed for the logout confirmation. * - Scenario: The component renders with a custom logout confirmation message instead of the default one. * - Key Aspect: Ensures the custom logout message is displayed correctly. */ export const WithCustomLogoutMessage: Story = { render: () => ( ) };