I know you can pass all a react components props to it\'s child component like this:
const ParentComponent = () => ( Parent
Using this
const ParentComponent = ({ prop1, prop2, prop3 }) => ( Parent Component ); const ChildComponent = ({ prop1, prop2, prop3 }) =>{ Child Component with prop1={prop1} Child Component with prop2={prop2} Child Component with prop2={prop3} }