How to use Link in Next.js with multiple <div> inside this <div>? I have img tag for Link, paragraph for link , title for link.
Error: Multiple children were passed to with
hrefof/articlebut only one child is supported https://nextjs.org/docs/messages/link-multiple-children Open your browser's console to view the Component stack trace.
<Link href="/article" title="">
<div >
<h4>{props.featurename}</h4>
<a href="/author"><h3>{props.featuredesc}</h3></a>
</div>
<div className="img-entry">
<Image src="/images/more-img.png" width={265} height={290} title="" alt="" />
</div>
</Link>