feat(storybook): update formatting; introduce new pages; update keycloakify

This commit is contained in:
Waldemar Reusch
2023-03-16 11:32:11 +01:00
parent 60c4adf572
commit 09ce9d97f6
30 changed files with 882 additions and 91 deletions
@@ -0,0 +1,16 @@
import { ComponentMeta } from '@storybook/react';
import KcApp from '../KcApp';
import { template } from '../../../.storybook/util'
const bind = template('update-user-profile.ftl');
export default {
kind: 'Page',
title: 'Theme/Pages/Actions/Update User Profile',
component: KcApp,
parameters: {
layout: 'fullscreen',
},
} as ComponentMeta<typeof KcApp>;
export const Default = bind({})