# No children were passed to #### Why This Error Occurred In your application code `next/link` was used without passing a child: For example: ```js import Link from 'next/link' export default function Home() { return ( <> // or ) } ``` #### Possible Ways to Fix It Make sure one child is used when using ``: ```js import Link from 'next/link' export default function Home() { return ( <> To About // or To About ) } ```