-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(storybook): add stories for button
add new stories for button component resolves #40 Signed-off-by: Niloy Sikdar <[email protected]>
- Loading branch information
1 parent
be32759
commit cb22cb1
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { ComponentStory, ComponentMeta } from '@storybook/react'; | ||
|
||
import { Button } from './Button'; | ||
|
||
export default { | ||
component: Button, | ||
} as ComponentMeta<typeof Button>; | ||
|
||
//“template” of how args map to rendering | ||
const Template: ComponentStory<typeof Button> = (args) => ( | ||
<table> | ||
<tbody> | ||
<tr> | ||
<Button {...args} /> | ||
</tr> | ||
</tbody> | ||
</table> | ||
); | ||
|
||
export const Default = Template.bind({}); | ||
|
||
Default.args = { | ||
children: 'Click here', | ||
href: 'https://github.com/leopardslab/react-email', | ||
style: { | ||
backgroundColor: 'blue', | ||
color: 'white', | ||
}, | ||
}; |