In JSX V3, the key type was optional. So, this expression was possible: ```rescript let key = Some("k") <C ?key /> ``` But, JSX v4 throws a type error. ``` this type is option<string> , expected string ```