import React from 'react'; function Control({ onPlay, onPause, onReset, current, setCurrent, recoverAutoScrollImmediately, }: { onPlay: () => void; onPause: () => void; onReset: () => void; current: number; setCurrent: (c: number) => void; recoverAutoScrollImmediately: () => void; }) { return (