Skip to content

Commit

Permalink
refactor(design-system): Rename props
Browse files Browse the repository at this point in the history
Signed-off-by: Jeroen Branje <[email protected]>
  • Loading branch information
jeroenbranje committed Mar 6, 2024
1 parent 3e1d087 commit 709dd32
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ export default {
} as Meta

const Template: Story = ({ isOpen, setShowHide, heading, description }) => (
<Dialog isOpen={isOpen} setShowHide={setShowHide} heading={heading} description={description} action={<button>CLICK</button>} />
<Dialog
isOpen={isOpen}
setShowHide={setShowHide}
heading={heading}
description={description}
action={<button>CLICK</button>}
/>
)

export const DialogStory = Template.bind({})
Expand Down

0 comments on commit 709dd32

Please sign in to comment.