mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-12 19:51:07 +05:00
* feat: upgrade dependencies * chore: update linter and CI workflows * chore: upgrade browserslist
15 lines
350 B
TypeScript
15 lines
350 B
TypeScript
import { ComponentMeta, Story } from '@storybook/react'
|
|
import { Button, ButtonProps } from '.'
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: Button,
|
|
} as ComponentMeta<typeof Button>
|
|
|
|
const Template: Story<ButtonProps> = (args) => <Button {...args} />
|
|
|
|
export const Desktop = Template.bind({})
|
|
Desktop.args = {
|
|
children: 'Mac app coming soon',
|
|
}
|