import React from 'react'; import { Controls as PlayerControls, connectPlayer } from 'Player'; import { Toggler } from 'UI'; interface Props { toggleAutoplay: () => void; autoplay: boolean; } function AutoplayToggle(props: Props) { const { autoplay } = props; return (