import type { Meta, StoryObj } from '@storybook/react' import EmptyState from './EmptyState.component' import { IEmptyState } from './EmptyState.interface' import React from 'react' // More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export export default { title: 'Backlog/EmptyState', component: EmptyState, // More on argTypes: https://storybook.js.org/docs/react/api/argtypes argTypes: {} } as Meta export const Simple: StoryObj = { render: args => ( ), args: {} } export const WithoutText: StoryObj = { render: args => , args: {} }