import { Link } from '@0x/react-shared'; import * as _ from 'lodash'; import * as React from 'react'; interface CustomMenuItemProps { to: string; onClick?: () => void; className?: string; } interface CustomMenuItemState { isHovering: boolean; } export class CustomMenuItem extends React.Component { public static defaultProps: Partial = { onClick: _.noop.bind(_), className: '', }; public constructor(props: CustomMenuItemProps) { super(props); this.state = { isHovering: false, }; } public render(): React.ReactNode { const menuItemStyles = { cursor: 'pointer', opacity: this.state.isHovering ? 0.5 : 1, }; return (
{this.props.children}
); } private _onToggleHover(isHovering: boolean): void { this.setState({ isHovering, }); } }