19 lines
387 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';
export default function LinkButton(
props: React.ComponentProps<typeof Button> &
React.ComponentProps<typeof Link>,
) {
const { to, ...restProps } = props;
return (
<Button
component={linkProps => <Link {...linkProps} to={to} />}
{...restProps}
/>
);
}