Improve terms story

This commit is contained in:
Joseph Garrone
2024-06-04 04:06:29 +02:00
parent e507aace6b
commit 183826ca0d
10 changed files with 230 additions and 561 deletions

View File

@ -19,3 +19,27 @@ type Story = StoryObj<typeof meta>;
export const Default: Story = {
render: () => <PageStory />
};
export const French: Story = {
render: () => (
<PageStory
kcContext={{
locale: {
currentLanguageTag: "fr"
}
}}
/>
)
};
export const Spanish: Story = {
render: () => (
<PageStory
kcContext={{
locale: {
currentLanguageTag: "es"
}
}}
/>
)
};