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

# ConversationNotes

> * ConversationNotes - Notes list with add functionality * Shows notes added by team members and allows adding new notes.

* ConversationNotes - Notes list with add functionality \* Shows notes added by team members and allows adding new notes.

## Props

<ResponseField name="notes" type="ConversationNote[]" required={true}>
  notes
</ResponseField>

<ResponseField name="conversationId" type="string" required={true}>
  conversationId
</ResponseField>

## Usage

```tsx theme={null}
import { ConversationNotes } from '@/components/ConversationNotes';

export default function Example() {
  return (
    <ConversationNotes notes={notes} conversationId={conversationId} />
  );
}
```
