import React from "react"; import type { ComponentMeta } from "@storybook/react"; import { createPageStory } from "./createPageStory"; const pageId = "login.ftl"; const { PageStory } = createPageStory({ pageId }); const meta: ComponentMeta = { "title": `login/${pageId}`, "component": PageStory }; export default meta; export const Default = () => ; export const WithoutPasswordField = () => ( ); export const WithoutRegistration = () => ( ); export const WithoutRememberMe = () => ( ); export const WithoutPasswordReset = () => ( ); export const WithEmailAsUsername = () => ( ); export const WithPresetUsername = () => ( ); export const WithImmutablePresetUsername = () => ( ); export const WithSocialProviders = () => ( );