# @univerjs/sheets-thread-comment-ui

- Human documentation: [https://docs.univer.ai/reference/packages/plugins/univerjs/sheets-thread-comment-ui](https://docs.univer.ai/reference/packages/plugins/univerjs/sheets-thread-comment-ui)

- Agent Markdown: [https://docs.univer.ai/reference/packages/plugins/univerjs/sheets-thread-comment-ui.md](https://docs.univer.ai/reference/packages/plugins/univerjs/sheets-thread-comment-ui.md)

- Requested language: `en-US`

- Content language: `en-US`

- Documentation version: `1.0.0-rc.0`

- Source: [packages/plugins/univerjs/sheets-thread-comment-ui.mdx](https://github.com/dream-num/documentation/blob/dev/content/reference/packages/plugins/univerjs/sheets-thread-comment-ui.mdx)

---

Thread comment UI integration for Univer Sheets.

```typescript
// [!code word:UniverSheetsThreadCommentUIPlugin]
// [!code word:IUniverSheetsThreadCommentUIConfig]
import { UniverSheetsThreadCommentUIPlugin } from '@univerjs/sheets-thread-comment-ui'

univer.registerPlugin(UniverSheetsThreadCommentUIPlugin, IUniverSheetsThreadCommentUIConfig)
```

For mobile applications, register `UniverSheetsThreadCommentMobileUIPlugin` instead:

```typescript
import { UniverSheetsThreadCommentMobileUIPlugin } from '@univerjs/sheets-thread-comment-ui'

univer.registerPlugin(UniverSheetsThreadCommentMobileUIPlugin)
```

## Entry Points

* Locale: `@univerjs/sheets-thread-comment-ui/locale/*`

## IUniverSheetsThreadCommentUIConfig

```ts
import type { DependencyOverride } from '@univerjs/core'
import type { MenuConfig } from '@univerjs/ui'

export interface IUniverSheetsThreadCommentUIConfig {
  menu?: MenuConfig
  overrides?: DependencyOverride
}
```
