Answers for "how to find react version in our react project"

4

how to find out which version of React

// To view which version of React is/was used for a particular app, type in the below in commandline/terminal.
npm view react version
npm view react-native version
Posted by: Guest on February-04-2020
-1

find react version

const REACT_VERSION = React.version;

ReactDOM.render(
  <div>React version: {REACT_VERSION}</div>,
  document.getElementById('root')
);
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>

<div id="root"></div>
Posted by: Guest on December-31-2020

Code answers related to "how to find react version in our react project"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language