import React from 'react'
import actions from 'app/actions'
const PlayButton = ({ playing, onClick }) => {
return (
{
if (onClick) {
onClick(playing)
} else if (playing) {
actions.audio.pause()
} else {
actions.audio.play()
}
}}
/>
)
}
export default PlayButton