import type { Meta, StoryObj } from '@storybook/react'; import { PlayerControls } from './PlayerControls'; const meta: Meta = { title: 'Components/Features/Player/PlayerControls', component: PlayerControls, tags: ['autodocs'], argTypes: { onPlayPause: { action: 'play/pause' }, onNext: { action: 'next' }, onPrevious: { action: 'previous' }, onShuffle: { action: 'shuffle' }, onRepeat: { action: 'repeat' }, }, decorators: [ (Story) => (