Skip to content

Commit

Permalink
Extend banner stories
Browse files Browse the repository at this point in the history
DDFFORM-540
  • Loading branch information
LasseStaus committed Jun 19, 2024
1 parent 8d05e1e commit bb9a2e2
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions src/stories/Library/banner/Banner.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,31 @@ export const Default = Template.bind({});

export const NoImage = Template.bind({});
NoImage.args = {
image: undefined,
};

export const NoImageOnlyTitle = Template.bind({});
NoImageOnlyTitle.args = {
title: "Title <u>uden</u> billede",
image: undefined,
description: undefined,
};

export const NoImageOnlyDescription = Template.bind({});
NoImageOnlyDescription.args = {
title: undefined,
image: undefined,
description:
"Om du er dedikeret musiknørd eller moderat musikinteresseret, så er dette siden til dig. Her kan du finde anbefalinger, digitale musikmagasiner, nyheder, musiklitteratur og meget mere.",
};

export const NoDescription = Template.bind({});
NoDescription.args = {
export const WithImageOnlyTitle = Template.bind({});
WithImageOnlyTitle.args = {
title: "Banner <u>uden</u> beskrivelse",
description: undefined,
};
export const WithImageOnlyDescription = Template.bind({});
WithImageOnlyDescription.args = {
description:
"Om du er dedikeret musiknørd eller moderat musikinteresseret, så er dette siden til dig. Her kan du finde anbefalinger, digitale musikmagasiner, nyheder, musiklitteratur og meget mere.",
};

0 comments on commit bb9a2e2

Please sign in to comment.