From afe671f1bdda0269f4f957022f6bbe39eed7181a Mon Sep 17 00:00:00 2001 From: -l Date: Mon, 13 Nov 2023 10:48:34 +0100 Subject: [PATCH] chore: adds Card stories --- .../components/card/stories/Card.stories.tsx | 100 ++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 packages/dnb-eufemia/src/components/card/stories/Card.stories.tsx diff --git a/packages/dnb-eufemia/src/components/card/stories/Card.stories.tsx b/packages/dnb-eufemia/src/components/card/stories/Card.stories.tsx new file mode 100644 index 00000000000..fdfa8e52872 --- /dev/null +++ b/packages/dnb-eufemia/src/components/card/stories/Card.stories.tsx @@ -0,0 +1,100 @@ +/** + * @dnb/eufemia Component Story + * + */ + +import React from 'react' + +import { Field } from '../../../extensions/forms' +import { Card, Flex } from '../../' +import { Wrapper, Box } from 'storybook-utils/helpers' + +export default { + title: 'Eufemia/Components/Card', +} + +const AllFormFields = () => { + return ( + <> + + + + + + + + + + + + + + + + + + ) +} + +export const CardSandbox = () => { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ) +}