### Install Dependencies Source: https://github.com/react-ui-org/react-ui/blob/master/src/docs/contribute/general-guidelines.md Use this command to install project dependencies, especially after initial setup or when dependencies have changed. ```bash npm ci ``` -------------------------------- ### Start Documentation Server Source: https://github.com/react-ui-org/react-ui/blob/master/src/docs/contribute/general-guidelines.md Use this command to start a local server for viewing the documentation. ```bash mkdocs serve ``` -------------------------------- ### Install React UI with npm Source: https://github.com/react-ui-org/react-ui/blob/master/README.md Install the React UI library using npm. Ensure react, react-dom, and prop-types are also installed. ```bash npm install --save @react-ui-org/react-ui ``` -------------------------------- ### Install Floating UI Source: https://github.com/react-ui-org/react-ui/blob/master/src/components/Popover/README.md Install the Floating UI library, which is recommended for advanced Popover positioning and smart updates. ```shell npm install --save @floating-ui/react-dom ``` -------------------------------- ### Run Automatic Setup Script Source: https://github.com/react-ui-org/react-ui/blob/master/src/docs/contribute/general-guidelines.md Execute the setup script to automatically configure the project and build Docker images. This is skipped when using Development Containers. ```bash bash setup.sh ``` -------------------------------- ### Full React Application Example Source: https://github.com/react-ui-org/react-ui/blob/master/src/docs/getting-started/usage.md A complete example demonstrating the basic HTML structure and JSX for a React application using React UI components. This includes necessary imports and rendering logic. ```html React UI Example
``` ```jsx import React from 'react'; import ReactDOM from 'react-dom'; import { Button } from '@react-ui-org/react-ui'; import '@react-ui-org/react-ui/dist/react-ui.css'; const App = () => (