import Link from 'next/link' const UnexpectedNestedA = () => { const UnexpectedWrapper = (props) => { const {href, id} = props const safeProps = {href, id} return ({props.children}) } return UnexpectedWrapper } const FakeA = UnexpectedNestedA() export default () => (
Will redirect as an `a` tag Will not redirect as an `a` tag

This is the passHref prop page.

)