Skip to main content
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:
npm install @deskofy/react
After installation, you can import and use the components in your React application:
import { DeskofyTitleBar } from '@deskofy/react';

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