File size: 371 Bytes
8a37e0a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import type { Meta, StoryObj } from '@storybook/react';

import QueueControls from './QueueControls';

const meta: Meta<typeof QueueControls> = {
  title: 'Feature/QueueControls',
  tags: ['autodocs'],
  component: QueueControls,
};

export default meta;
type Story = StoryObj<typeof QueueControls>;

export const Default: Story = {
  render: () => <QueueControls />,
};