mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-14 11:06:21 +05:00
* feat: upgrade dependencies * chore: update linter and CI workflows * chore: upgrade browserslist
13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
import { ComponentMeta, Story } from '@storybook/react'
|
|
import { ToolTitle, ToolTitleProps } from '.'
|
|
|
|
export default {
|
|
title: 'Tool Title',
|
|
component: ToolTitle,
|
|
} as ComponentMeta<typeof ToolTitle>
|
|
|
|
const Template: Story<ToolTitleProps> = (args) => <ToolTitle {...args} />
|
|
|
|
export const Desktop = Template.bind({})
|
|
Desktop.args = {}
|