import React from "react"; import type { Meta, StoryObj } from "@storybook/react"; import { createKcPageStory } from "../KcPageStory"; const { KcPageStory } = createKcPageStory({ pageId: "totp.ftl" }); const meta = { title: "account/totp.ftl", component: KcPageStory } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { render: () => ( ) }; export const WithTotpEnabled: Story = { render: () => ( ) }; export const WithManualMode: Story = { render: () => ( ) }; export const MoreThanOneTotpProviders: Story = { render: () => ( ) }; // TOTP Enabled but No Existing OTP Credentials export const TotpEnabledNoOtpCredentials: Story = { render: () => ( ) }; // Manual Mode TOTP without Scanning export const ManualModeTotp: Story = { render: () => ( ) }; // Multiple OTP Devices Scenario export const MultipleOtpDevices: Story = { render: () => ( ) };