import React from 'react' import { Meta, StoryObj } from '@storybook/react' import Overflow from './Overflow.component' import CategoriesCard from '../CategoriesCard/CategoriesCard.component' import { IOverflow } from './Overflow.interface' export default { title: 'Backlog/Overflow', component: Overflow, args: { linkElement: , buttonLabel: 'click', title: 'Handles' } } as Meta export const Simple: StoryObj> = { render: args => { return ( } title={args.title} buttonLabel={args.buttonLabel} linkElement={args.linkElement} /> } title={args.title} buttonLabel={args.buttonLabel} linkElement={args.linkElement} /> ) } }