### Start Development Server Command Source: https://ui.lobehub.com/~demos/src-markdown-demo-codeblocks Use this command to start the development server. ```bash npm run dev ``` -------------------------------- ### Bash Command Example Source: https://ui.lobehub.com/components/code-editor A common bash command for installing dependencies using pnpm. This is useful for setting up projects or managing packages. ```bash $ pnpm install ``` -------------------------------- ### Install Dependencies Command Source: https://ui.lobehub.com/~demos/src-markdown-demo-codeblocks Use this command to install project dependencies. ```bash npm install ``` -------------------------------- ### Hotkey Support Example Source: https://ui.lobehub.com/components/tooltip Example demonstrating how to use the `hotkey` prop to display keyboard shortcuts within a tooltip. ```APIDOC ## Hotkey Support The Tooltip component includes special integration with the Hotkey component. When you provide a `hotkey` prop, the tooltip will display the specified keyboard shortcut alongside the tooltip text. This is useful for displaying shortcuts for actions. ### Example ```jsx import { Tooltip, Hotkey } from '@lobehub/ui'; ``` This will display "Search" along with the keyboard shortcut in the tooltip. ``` -------------------------------- ### Default Drawer Example Source: https://ui.lobehub.com/components/drawer A basic example of the Drawer component with content. This demonstrates the default appearance and behavior. ```javascript import { Drawer } from '@lobehub/ui'; // Example Usage: content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content ``` -------------------------------- ### Default Tabs Example Source: https://ui.lobehub.com/components/tabs A basic example demonstrating the default appearance and functionality of the Tabs component. ```javascript import { Tabs } from '@lobehub/ui'; const App = () => { const items = [ { key: '1', label: 'Home', children: 'Content of Tab Pane 1', }, { key: '2', label: 'Components', children: 'Content of Tab Pane 2', }, { key: '3', label: 'Color', children: 'Content of Tab Pane 3', }, { key: '4', label: 'Changelog', children: 'Content of Tab Pane 4', }, ]; return ; }; ``` -------------------------------- ### Default Collapse Example Source: https://ui.lobehub.com/components/collapse A basic example of the Collapse component with default panel headers and content. ```javascript const App = () => (

This is a description

This is panel header 2

This is panel header 3

); ``` -------------------------------- ### Default Select Example Source: https://ui.lobehub.com/components/base-ui/select A basic example of the Select component with predefined options. This demonstrates the default appearance and functionality. ```javascript