import { action } from 'storybook/actions' import Clickable from '.' import { Meta, StoryObj } from '@storybook/react-vite' export default { title: 'react/Clickable', component: Clickable, } as Meta export const Button: StoryObj = { render: () => button, } export const Link: StoryObj = { render: () => ( link ), }