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

# React Components

React components in Deskofy 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 Deskofy React components, first install the package using npm:

```shellscript theme={null}
npm install @deskofy/react
```

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

```typescript theme={null}
import { DeskofyTitleBar } from '@deskofy/react';

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