Google News
logo
ReactJS - Interview Questions
How can we find the version of React at runtime in the browser?
You can use React.version to get the version.
const REACT_VERSION = React.version

ReactDOM.render(
  <div>{`React version: ${REACT_VERSION}`}</div>,
  document.getElementById('app')
)
Advertisement