import React from "react"; import * as Actions from "../../actionCreators"; import { useActionCreator } from "../../hooks"; const ActionButtons = React.memo(() => { const previous = useActionCreator(Actions.previous); const play = useActionCreator(Actions.play); const pause = useActionCreator(Actions.pause); const next = useActionCreator(Actions.next); return (