You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
704 B
Markdown
40 lines
704 B
Markdown
7 years ago
|
### From other
|
||
|
|
||
|
```jsx
|
||
|
<util.ConversationContext theme={util.theme}>
|
||
|
<TimerNotification
|
||
|
type="fromOther"
|
||
|
phoneNumber="(202) 555-1000"
|
||
|
profileName="Mr. Fire"
|
||
|
timespan="1 hour"
|
||
|
i18n={util.i18n}
|
||
|
/>
|
||
|
</util.ConversationContext>
|
||
|
```
|
||
|
|
||
|
### You changed
|
||
|
|
||
|
```jsx
|
||
|
<util.ConversationContext theme={util.theme}>
|
||
|
<TimerNotification
|
||
|
type="fromMe"
|
||
|
phoneNumber="(202) 555-1000"
|
||
|
timespan="1 hour"
|
||
|
i18n={util.i18n}
|
||
|
/>
|
||
|
</util.ConversationContext>
|
||
|
```
|
||
|
|
||
|
### Changed via sync
|
||
|
|
||
|
```jsx
|
||
|
<util.ConversationContext theme={util.theme}>
|
||
|
<TimerNotification
|
||
|
type="fromSync"
|
||
|
phoneNumber="(202) 555-1000"
|
||
|
timespan="1 hour"
|
||
|
i18n={util.i18n}
|
||
|
/>
|
||
|
</util.ConversationContext>
|
||
|
```
|