2018-04-03 22:56:12 +00:00
|
|
|
|
|
|
|
This is Reply.md.
|
2018-04-05 16:19:00 +00:00
|
|
|
|
|
|
|
```jsx
|
|
|
|
const model = new Whisper.Message({
|
|
|
|
type: 'outgoing',
|
|
|
|
body: 'text',
|
|
|
|
sent_at: Date.now() - 18000000,
|
|
|
|
})
|
|
|
|
const View = Whisper.MessageView;
|
|
|
|
const options = {
|
|
|
|
model,
|
|
|
|
};
|
|
|
|
<util.ConversationContext theme={util.theme}>
|
|
|
|
<util.BackboneWrapper
|
|
|
|
View={View}
|
|
|
|
options={options}
|
|
|
|
/>
|
|
|
|
</util.ConversationContext>
|
|
|
|
```
|