Skip to content

Commit

Permalink
fix: update help modal placeholder text
Browse files Browse the repository at this point in the history
  • Loading branch information
shawn320 committed May 3, 2023
1 parent 9265c75 commit 4df195f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/MoreInfo/MoreInfo.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@ export default {
const Template: Story<MoreInfoProps> = (args) => <MoreInfo {...args} />;

export const Default = Template.bind({});
export const SampleAlpha = Template.bind({});

Default.args = {
title: "Descriptive title / Term requiring explanation",
body: "Description",
};

SampleAlpha.args = {
title: "Alpha",
body: "Alpha means building a proof of concept tool or service to meet user needs and testing it with users.",
body: `Alpha means building a "proof of concept" tool or service to meet user needs and testing it with users.`,
};

0 comments on commit 4df195f

Please sign in to comment.