const SlideRightLink = ({ to, children, ...props }) => (
  <Link to={{ pathname: to, state: { slideDirection: 'right' }}} {...props}>
    {children}
  </Link>
)