SyntaxFix
Write A Post
Hire A Developer
Questions
I got around a similar issue by setting defaultProps:
ComponentName.defaultProps = { propName: '' }
<select value="this.props.propName" ...
So now I avoid errors on compilation if my prop does not exist until mounting.