import * as React from 'react'; import { Link } from 'react-router-dom'; type LinkAdapterProps = any & { href: string; }; export const LinkAdapter: React.FunctionComponent = (props) => { const { href, ...restProps } = props; return ( { props.children } ); };