Skip to content

Instantly share code, notes, and snippets.

@kivircik-parantez
Created December 30, 2022 23:27
Show Gist options
  • Save kivircik-parantez/7f755357a2b55239779fbc52a9f9f7dd to your computer and use it in GitHub Desktop.
Save kivircik-parantez/7f755357a2b55239779fbc52a9f9f7dd to your computer and use it in GitHub Desktop.
Pass Data Down to Child
function Parent() {
const data = useSomeAPI();
// ...
// ✅ Good: Passing data down to the child
return <Child data={data} />;
}
function Child({ data }) {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment