Improve stories

This commit is contained in:
Joseph Garrone 2024-06-13 00:47:18 +02:00
parent 6e7ae48f78
commit 47f03f6833

View File

@ -14,5 +14,17 @@ export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
render: () => <KcPageStory />
render: () => (
<KcPageStory
kcContext={{
message: {
summary: "You need to verify your email to activate your account.",
type: "warning"
},
user: {
email: "john.doe@gmail.com"
}
}}
/>
)
};