import type { Meta, StoryObj } from '@storybook/react'; import QueueControls from './QueueControls'; const meta: Meta = { title: 'Feature/QueueControls', tags: ['autodocs'], component: QueueControls, }; export default meta; type Story = StoryObj; export const Default: Story = { render: () => , };