19 lines
481 B
TypeScript
19 lines
481 B
TypeScript
|
|
import { ComponentStory, ComponentMeta } from "@storybook/react";
|
|
import { createPageStory } from "../createPageStory";
|
|
|
|
const { PageStory } = createPageStory({
|
|
pageId: "password.ftl"
|
|
});
|
|
|
|
export default {
|
|
title: "account/Password",
|
|
component: PageStory,
|
|
} as ComponentMeta<typeof PageStory>;
|
|
|
|
export const Default: ComponentStory<typeof PageStory> = () => <PageStory
|
|
kcContext={{
|
|
message: { type: "success", summary: "This is a test message" }
|
|
}}
|
|
/>;
|