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 Repeat = React.memo(() => { const repeat = useTypedSelector(Selectors.getRepeat); const handleClick = useActionCreator(Actions.toggleRepeat); return ( ( )} >
); }); export default Repeat;