Skip to content

Instantly share code, notes, and snippets.

@tareefdev
Created July 24, 2019 12:40
Show Gist options
  • Save tareefdev/660d3de185e0c05401d280478853809c to your computer and use it in GitHub Desktop.
Save tareefdev/660d3de185e0c05401d280478853809c to your computer and use it in GitHub Desktop.
// source https://jsbin.com
const parent = ({data}) => {
const [hoveredDistrict, setHoveredDistrict] = useState('hi');
console.log('I re-rendered!');
return (
<div>
<firstComponent/>
<secondComponent setHoveredDistrict={setHoveredDistrict} />
<div> {HoveredDistrict} </div>
<thirdComponent/>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment