Is there a way to know the runtime version of React in the browser?
In an existing project a simple way to see the React version is to go to a render method of any component and add:
render
{React.version}
This assumes you import React like this: import React from 'react'
import React from 'react'