demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/react-18.2.0/README.md

Path
demo___customer_pitch-c4152739-a50b-4b5b-9d4d-0561461666d9.zip-extract/_dependencies/npm/react-18.2.0/README.md
Status
scanned
Type
file
Name
README.md
Extension
.md
Programming language

      
    
Mime type
text/x-java
File type
Java source, ASCII text, with very long lines
Tag

      
    
Rootfs path

      
    
Size
1162 (1.1 KB)
MD5
4d5c54d486cbb0012459f2bb385fbda4
SHA1
52237e3c799264fc410843c40d1f04b896d61b01
SHA256
f69ca37ae48117e455a8ba0ffc48b6af14f87cfb8d787cabf630ee5db1dc07ce
SHA512

      
    
SHA1_git
826563e1b9a12ffd6d56870775b2ed43743736e6
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
README.md | 1.1 KB |

# `react` React is a JavaScript library for creating user interfaces. The `react` package contains only the functionality necessary to define React components. It is typically used together with a React renderer like `react-dom` for the web, or `react-native` for the native environments. **Note:** by default, React will be in development mode. The development version includes extra warnings about common mistakes, whereas the production version includes extra performance optimizations and strips all error messages. Don't forget to use the [production build](https://reactjs.org/docs/optimizing-performance.html#use-the-production-build) when deploying your application. ## Usage ```js import { useState } from 'react'; import { createRoot } from 'react-dom/client'; function Counter() { const [count, setCount] = useState(0); return ( <> <h1>{count}</h1> <button onClick={() => setCount(count + 1)}> Increment </button> </> ); } const root = createRoot(document.getElementById('root')); root.render(<App />); ``` ## Documentation See https://reactjs.org/ ## API See https://reactjs.org/docs/react-api.html
URL Start line End line
https://reactjs.org/docs/optimizing-performance.html#use-the-production-build 7 7
https://reactjs.org/ 33 33
https://reactjs.org/docs/react-api.html 37 37
Package URL License Primary language
pkg:npm/acme-demo-app@1.0.0 JavaScript
pkg:npm/react@18.2.0 mit JavaScript