14 lines
436 B
TypeScript
Raw Normal View History

2019-12-07 13:28:52 +02:00
import React from 'react';
import { Link } from 'react-router-dom';
import Button from './Button';
type ButtonProps = React.ComponentProps<typeof Button>;
type LinkProps = React.ComponentProps<typeof Link>;
export default function LinkButton(props: ButtonProps & LinkProps) {
2020-05-24 02:08:24 +03:00
const { to, ...restProps } = props;
2019-12-07 13:28:52 +02:00
2020-05-24 02:08:24 +03:00
return <Button component={(linkProps) => <Link {...linkProps} to={to} />} {...(restProps as ButtonProps)} />;
2019-12-07 13:28:52 +02:00
}