ParentComponent.jsx - How to Pass All Props to a Child Component in React
import React from "react" | |
import DisplayAllProps from "./DisplayAllProps" | |
import ChildComponent from "./ChildComponent" | |
const ParentComponent = (props) => ( | |
<section> | |
<h1>ParentComponent's props:</h1> | |
<DisplayAllProps {...props}></DisplayAllProps> | |
<ChildComponent {...props}></ChildComponent> | |
</section> | |
) | |
export default ParentComponent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment