import React from "react"; import classnames from "classnames"; import * as Actions from "../../actionCreators"; import * as Selectors from "../../selectors"; import ContextMenuWraper from "../ContextMenuWrapper"; import { Node } from "../ContextMenu"; import { useTypedSelector, useActionCreator } from "../../hooks"; const Shuffle = React.memo(() => { const shuffle = useTypedSelector(Selectors.getShuffle); const handleClick = useActionCreator(Actions.toggleShuffle); return ( ( )} >
); }); export default Shuffle;