Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created April 5, 2024 19:44
Show Gist options
  • Save PaulieScanlon/d3262264f314969a2244f384a12fcb59 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/d3262264f314969a2244f384a12fcb59 to your computer and use it in GitHub Desktop.
Example Child Component
// components/child-component.js
const ChildComponent = ({ data }) => {
return <pre>{JSON.stringify(data, null, 2)}</pre>;
};
export default ChildComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment