I\'m trying to pass props from my app.jsx to one of my route components using react router but I get the following error
TypeError: Cannot read property \
does not pass custom props to components. Use render function instead:
} />
As SakoBu mentioned you need to change your constructor:
constructor(props) { super(props); this.state = { account: this.props.acc, ethAddress: this.props.ethAdd }; }