chore(react-router-v6): fixing the comment

This commit is contained in:
blam
2020-06-11 21:48:07 +02:00
parent 6f80d1b9bb
commit 22e411df3b
@@ -22,8 +22,8 @@ type Props = ComponentProps<typeof MaterialButton> &
ComponentProps<typeof RouterLink>;
/**
* Thin wrapper on top of material-ui's Link component
* Makes the Link to utilise react-router
* Thin wrapper on top of material-ui's Button component
* Makes the Button to utilise react-router
*/
export const Button = React.forwardRef<any, Props>((props, ref) => (
<MaterialButton ref={ref} component={RouterLink} {...props} />