favycon/components/tool-title/index.stories.tsx
Rui Saraiva 785563a71c
feat: upgrade dependencies (#480)
* feat: upgrade dependencies

* chore: update linter and CI workflows

* chore: upgrade browserslist
2021-12-04 18:32:53 +00:00

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 = {}