18 lines
420 B
TypeScript
18 lines
420 B
TypeScript
|
|
import {ComponentMeta} from '@storybook/react';
|
||
|
|
import KcApp from '../KcApp';
|
||
|
|
import {template} from '../../../.storybook/util'
|
||
|
|
|
||
|
|
export default {
|
||
|
|
kind: 'Page',
|
||
|
|
title: 'Theme/Pages/Login/Review IDP User Profile',
|
||
|
|
component: KcApp,
|
||
|
|
parameters: {
|
||
|
|
layout: 'fullscreen',
|
||
|
|
},
|
||
|
|
} as ComponentMeta<typeof KcApp>;
|
||
|
|
|
||
|
|
const bind = template('idp-review-user-profile.ftl');
|
||
|
|
|
||
|
|
export const Default = bind({})
|
||
|
|
|