Fix info.ftl page rendering in storybook

This commit is contained in:
Joseph Garrone
2023-11-07 16:33:19 +01:00
parent c8b85c43aa
commit c41eae63e7
2 changed files with 14 additions and 2 deletions

View File

@ -21,4 +21,13 @@ const meta: ComponentMeta<any> = {
export default meta;
export const Default = () => <PageStory />;
export const Default = () => (
<PageStory
kcContext={{
message: {
summary: "This is the server message",
type: "info"
}
}}
/>
);