import React from 'react'; import { withRouter, RouteComponentProps } from 'react-router'; import { Button } from 'antd'; import { BaseButtonProps } from 'antd/lib/button/button'; interface OwnProps { to: string; } type Props = OwnProps & BaseButtonProps & RouteComponentProps; class LinkButton extends React.Component { render() { const { history, to, staticContext, ...rest } = this.props; return (