Skip to content

Instantly share code, notes, and snippets.

@ShanikaNishadhi
Created October 5, 2020 18:16
Show Gist options
  • Save ShanikaNishadhi/a511561d892b386e50da4fcf23fffdeb to your computer and use it in GitHub Desktop.
Save ShanikaNishadhi/a511561d892b386e50da4fcf23fffdeb to your computer and use it in GitHub Desktop.
const App = () => {
const content = "Which component is using the content?";
return (
<div className="App">
<ComponentOne>
<ComponentTwo>
<ComponentThree>
<ComponentUsingProps content={content} />
<ComponentThree>
</ComponentTwo>
</ComponentOne>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment