--- title: 'Multiple children were passed to ``' --- ## Why This Error Occurred In your application code multiple children were passed to `next/link` but only one child is supported: For example: ```js filename="example.js" import Link from 'next/link' export default function Home() { return ( To About Second To About ) } ``` ## Possible Ways to Fix It Make sure only one child is used when using ``: ```js filename="example.js" import Link from 'next/link' export default function Home() { return ( To About ) } ``` > **Good to know:** > > - As on Next.js 13.0, `` no longer requires a child `` tag. A [codemod](/docs/app/building-your-application/upgrading/codemods#remove-a-tags-from-link-components) is provided to automatically update your codebase.