-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
fixerRequest for new fixerRequest for new fixer
Description
Before
const Root = () => {
const link = 'http://example.com'
return <div>
<a href={link}>Go</a>
</div>
}
After
function Component({link}) {
return <a href={link}>Go</a>
}
const Root = () => {
const link = 'http://example.com'
return <div>
<Component link={link}/>
</div>
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
fixerRequest for new fixerRequest for new fixer