Skip to content

Commit

Permalink
fix: add missing lang
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Dec 20, 2024
1 parent b2caae9 commit 7a991e0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/storybook-test/stories/link/link.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,11 @@ export const LinkInParagraph: Story = {
children: 'Voorbeelddomein',
href: 'https://example.com',
},
globals: {
dir: 'ltr',
lang: 'nl',
title: 'Link van de dag',
},
parameters: {
docs: {
description: {
Expand All @@ -238,7 +243,7 @@ export const LinkInParagraph: Story = {
render({ children, ...restProps }) {
return (
<Paragraph>
In deze paragraaf staat een link naar <Link {...restProps}>{children}</Link>.
De link van de dag is: <Link {...restProps}>{children}</Link>.
</Paragraph>
);
},
Expand Down

0 comments on commit 7a991e0

Please sign in to comment.