feat(storybook): introduce more pages

This commit is contained in:
Waldemar Reusch
2023-03-14 18:02:42 +01:00
parent 1e1a638011
commit c76258e9d1
6 changed files with 321 additions and 0 deletions
@@ -0,0 +1,16 @@
import {ComponentMeta} from '@storybook/react';
import KcApp from '../KcApp';
import {template} from '../../../.storybook/util'
export default {
kind: 'Page',
title: 'Theme/Pages/Login/Password Update',
component: KcApp,
parameters: {
layout: 'fullscreen',
},
} as ComponentMeta<typeof KcApp>;
const bind = template('login-update-password.ftl');
export const Default = bind({})