# react-2 **Repository Path**: kevin402502/react-2 ## Basic Information - **Project Name**: react-2 - **Description**: A declarative, efficient, and flexible JavaScript library for building user interfaces. - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-17 - **Last Updated**: 2021-06-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # [React](https://reactjs.org/) · [](https://github.com/facebook/react/blob/master/LICENSE) [](https://www.npmjs.com/package/react) [](https://coveralls.io/github/facebook/react?branch=master) [](https://circleci.com/gh/facebook/react) [](https://reactjs.org/docs/how-to-contribute.html#your-first-pull-request) React is a JavaScript library for building user interfaces. * **Declarative:** React makes it painless to create interactive UIs. Design simple views for each state in your application, and React will efficiently update and render just the right components when your data changes. Declarative views make your code more predictable, simpler to understand, and easier to debug. * **Component-Based:** Build encapsulated components that manage their own state, then compose them to make complex UIs. Since component logic is written in JavaScript instead of templates, you can easily pass rich data through your app and keep state out of the DOM. * **Learn Once, Write Anywhere:** We don't make assumptions about the rest of your technology stack, so you can develop new features in React without rewriting existing code. React can also render on the server using Node and power mobile apps using [React Native](https://facebook.github.io/react-native/). [Learn how to use React in your own project](https://reactjs.org/docs/getting-started.html). ## Documentation You can find the React documentation [on the website](https://reactjs.org/docs). It is divided into several sections: * [Quick Start](https://reactjs.org/docs/hello-world.html) * [Advanced Guides](https://reactjs.org/docs/jsx-in-depth.html) * [API Reference](https://reactjs.org/docs/react-api.html) * [Tutorial](https://reactjs.org/tutorial/tutorial.html) * [Where to Get Support](https://reactjs.org/community/support.html) * [Contributing Guide](https://reactjs.org/docs/how-to-contribute.html) You can improve it by sending pull requests to [this repository](https://github.com/reactjs/reactjs.org). ## Examples We have several examples [on the website](https://reactjs.org/). Here is the first one to get you started: ```jsx class HelloMessage extends React.Component { render() { return