import React from "react"; import { Meta } from "@storybook/react"; import { createPageStory } from "../createPageStory"; const { PageStory } = createPageStory({ pageId: "totp.ftl" }); const meta = { title: "account/Authenticator", component: PageStory } satisfies Meta; export default meta; export const Default = () => ( ); export const WithTotpEnabled = () => ( ); export const WithManualMode = () => ( ); export const MoreThanOneTotpProviders = () => ( );