import * as React from 'react'; type Props = { href: string; children: string; }; export default ({ href, children }: Props) => ( {children} );