-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add button stories for storybook
- Loading branch information
1 parent
2da788b
commit 3846d4c
Showing
3 changed files
with
16 additions
and
16 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,15 @@ | ||
import React from 'react' | ||
|
||
import { ComponentStory, ComponentMeta } from '@storybook/react' | ||
|
||
import { Button, ButtonProps } from './Button' | ||
|
||
export default { | ||
title: 'atoms/Button', | ||
component: Button | ||
} as ComponentMeta<React.ComponentType<ButtonProps>> | ||
|
||
const Template: ComponentStory<React.ComponentType<ButtonProps>> = args => <Button {...args} /> | ||
|
||
export const Primary = Template.bind({}) | ||
Primary.args = {} |
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
This file was deleted.
Oops, something went wrong.