> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nativedesktop.com/llms.txt
> Use this file to discover all available pages before exploring further.

# React Components

React components in Native Desktop are not tightly coupled with the core framework but are designed to help you **customize and enhance your application's user interface**.

At the moment, the **Title Bar component** is the only available component, allowing you to create a **custom, theme-friendly title bar** that seamlessly matches your application's design and branding.

# Install Package

To use Native Desktop React components, first install the package using npm:

```shellscript theme={null}
npm install @native-desktop/react
```

After installation, you can import and use the components in your React application:

```typescript theme={null}
import { NativeDesktopTitleBar } from '@native-desktop/react';

const CustomTitleBar = () => {
  return <NativeDesktopTitleBar />;
}
```
