Enable the storybook to default to canevas

This commit is contained in:
garronej
2023-04-20 00:13:25 +02:00
parent e95e688cf0
commit 91c5dd40fa
2 changed files with 10 additions and 2 deletions

View File

@ -22,7 +22,7 @@ export const KeycloakifyRotatingLogo = memo((props: Props) => {
onLoadProp?.(); onLoadProp?.();
}); });
const { classes, cx } = useStyles({ const { classes } = useStyles({
isImageLoaded isImageLoaded
}); });
return ( return (

View File

@ -8,7 +8,15 @@ const { PageStory } = createPageStory({ pageId });
const meta: ComponentMeta<any> = { const meta: ComponentMeta<any> = {
"title": `login/${pageId}`, "title": `login/${pageId}`,
"component": PageStory "component": PageStory,
"parameters": {
"viewMode": "story",
"previewTabs": {
"storybook/docs/panel": {
"hidden": true
}
}
}
}; };
export default meta; export default meta;