Complete migration of storybook from @lordvlad #274
This commit is contained in:
@ -22,3 +22,24 @@ const meta: ComponentMeta<any> = {
|
||||
export default meta;
|
||||
|
||||
export const Default = () => <PageStory />;
|
||||
|
||||
export const WithManualSetUp = () => (
|
||||
<PageStory
|
||||
kcContext={{
|
||||
mode: "manual"
|
||||
}}
|
||||
/>
|
||||
);
|
||||
|
||||
export const WithError = () => (
|
||||
<PageStory
|
||||
kcContext={{
|
||||
messagesPerField: {
|
||||
get: (fieldName: string) => (fieldName === "totp" ? "Invalid TOTP" : undefined),
|
||||
exists: (fieldName: string) => fieldName === "totp",
|
||||
existsError: (fieldName: string) => fieldName === "totp",
|
||||
printIfExists: <T,>(fieldName: string, x: T) => (fieldName === "totp" ? x : undefined)
|
||||
}
|
||||
}}
|
||||
/>
|
||||
);
|
||||
|
Reference in New Issue
Block a user