Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created April 5, 2024 19:43
Show Gist options
  • Save PaulieScanlon/7922379ad9b8cae864fbc2fac7b7a799 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/7922379ad9b8cae864fbc2fac7b7a799 to your computer and use it in GitHub Desktop.
Example Parent Component
// components/parent-component.js
import ChildComponent from './child-component';
const ParentComponent = ({ data }) => {
return <ChildComponent data={data} />;
};
export default ParentComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment