import React from 'react'; interface Props { onPlay: () => void; onPause: () => void; onClip: () => void; onZoomIn: () => void; onZoomOut: () => void; } const ControlBar: React.FC = React.memo((props: Props) => { const styles = { width: '100%', flexGrow: 0 }; const buttonStyles = { cursor: 'pointer', background: 'black', outline: 'none', border: 'none', color: 'green', display: 'inline-block', margin: '0 2px', }; return ( <>
); }); ControlBar.displayName = 'ControlBar'; export { ControlBar };