React question detail
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(
document.getElementById("app")
);
React question detail
You can use React.version to get the version.
const REACT_VERSION = React.version;
ReactDOM.render(
document.getElementById("app")
);