# gds-context-menu - React

## Import

```typescript
import { GdsContextMenu } from '@sebgroup/green-core/react'
```

## Usage

Use the component as a React JSX element:

```tsx
<GdsContextMenu>
  {/* content */}
</GdsContextMenu>
```

## Event Handling

Events are handled using React event handler props. Event names are converted from kebab-case to camelCase with an "on" prefix:

| Web Component Event | React Handler Prop | Handler Example |
|---------------------|--------------------|-----------------|
| `gds-menu-item-click` | `onGdsMenuItemClick` | `onGdsMenuItemClick={handler}` |
| `gds-ui-state` | `onGdsUiState` | `onGdsUiState={handler}` |
