'use client'; import { createContext } from 'react'; import type { PlayerState } from '../types'; export const StateCtx = createContext(null); StateCtx.displayName = 'AudioPlayerStateCtx';