In React given a prop that provides true/false how would one conditionally add readOnly
to an input field in JSX?
So if I had this.props.boolean
whats a terse option for adding readOnly when this.props.boolean == false readOnly isn't attached, when this.props.boolean == true readOnly is attached.