39 lines
757 B
Markdown
39 lines
757 B
Markdown
|
### None
|
||
|
|
||
|
```jsx
|
||
|
<util.ConversationContext theme={util.theme} ios={util.ios}>
|
||
|
<ScrollDownButton
|
||
|
count={0}
|
||
|
conversationId="id-1"
|
||
|
scrollDown={id => console.log('scrollDown', id)}
|
||
|
i18n={util.i18n}
|
||
|
/>
|
||
|
</util.ConversationContext>
|
||
|
```
|
||
|
|
||
|
### One
|
||
|
|
||
|
```jsx
|
||
|
<util.ConversationContext theme={util.theme} ios={util.ios}>
|
||
|
<ScrollDownButton
|
||
|
count={1}
|
||
|
conversationId="id-2"
|
||
|
scrollDown={id => console.log('scrollDown', id)}
|
||
|
i18n={util.i18n}
|
||
|
/>
|
||
|
</util.ConversationContext>
|
||
|
```
|
||
|
|
||
|
### More than one
|
||
|
|
||
|
```jsx
|
||
|
<util.ConversationContext theme={util.theme} ios={util.ios}>
|
||
|
<ScrollDownButton
|
||
|
count={2}
|
||
|
conversationId="id-3"
|
||
|
scrollDown={id => console.log('scrollDown', id)}
|
||
|
i18n={util.i18n}
|
||
|
/>
|
||
|
</util.ConversationContext>
|
||
|
```
|