import React from "react"; import type { Meta, StoryObj } from "@storybook/react"; import { createKcPageStory } from "../KcPageStory"; const { KcPageStory } = createKcPageStory({ pageId: "applications.ftl" }); const meta = { title: "account/applications.ftl", component: KcPageStory } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { render: () => ( ) }; // No Available Roles or Grants Scenario export const NoAvailableRolesOrGrants: Story = { render: () => ( ) }; // Consent Not Required Scenario export const ConsentNotRequired: Story = { render: () => ( ) }; // No Roles Available but Consent Required Scenario export const NoRolesButConsentRequired: Story = { render: () => ( ) }; // Only Resource Roles Available Scenario export const OnlyResourceRolesAvailable: Story = { render: () => ( ) }; // No Additional Grants Scenario export const NoAdditionalGrants: Story = { render: () => ( ) };