const Root = () => {
const link = 'http://example.com'
return <div>
<a href={link}>Go</a>
</div>
}
function Component({link}) {
return <a href={link}>Go</a>
}
const Root = () => {
const link = 'http://example.com'
return <div>
<Component link={link}/>
</div>
}
Before
After