2018-07-09 21:29:13 +00:00
|
|
|
### From other
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
<util.ConversationContext theme={util.theme}>
|
|
|
|
<TimerNotification
|
|
|
|
type="fromOther"
|
|
|
|
phoneNumber="(202) 555-1000"
|
|
|
|
profileName="Mr. Fire"
|
|
|
|
timespan="1 hour"
|
|
|
|
i18n={util.i18n}
|
|
|
|
/>
|
2018-07-24 21:38:58 +00:00
|
|
|
<TimerNotification
|
|
|
|
type="fromOther"
|
|
|
|
phoneNumber="(202) 555-1000"
|
|
|
|
profileName="Mr. Fire"
|
|
|
|
disabled={true}
|
2018-08-01 16:24:05 +00:00
|
|
|
timespan="Off"
|
2018-07-24 21:38:58 +00:00
|
|
|
i18n={util.i18n}
|
|
|
|
/>
|
2018-07-09 21:29:13 +00:00
|
|
|
</util.ConversationContext>
|
|
|
|
```
|
|
|
|
|
|
|
|
### You changed
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
<util.ConversationContext theme={util.theme}>
|
|
|
|
<TimerNotification
|
|
|
|
type="fromMe"
|
|
|
|
phoneNumber="(202) 555-1000"
|
|
|
|
timespan="1 hour"
|
|
|
|
i18n={util.i18n}
|
|
|
|
/>
|
2018-07-24 21:38:58 +00:00
|
|
|
<TimerNotification
|
|
|
|
type="fromMe"
|
|
|
|
phoneNumber="(202) 555-1000"
|
|
|
|
disabled={true}
|
2018-08-01 16:24:05 +00:00
|
|
|
timespan="Off"
|
2018-07-24 21:38:58 +00:00
|
|
|
i18n={util.i18n}
|
|
|
|
/>
|
2018-07-09 21:29:13 +00:00
|
|
|
</util.ConversationContext>
|
|
|
|
```
|
|
|
|
|
|
|
|
### Changed via sync
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
<util.ConversationContext theme={util.theme}>
|
|
|
|
<TimerNotification
|
|
|
|
type="fromSync"
|
|
|
|
phoneNumber="(202) 555-1000"
|
|
|
|
timespan="1 hour"
|
|
|
|
i18n={util.i18n}
|
|
|
|
/>
|
2018-07-24 21:38:58 +00:00
|
|
|
<TimerNotification
|
|
|
|
type="fromSync"
|
|
|
|
phoneNumber="(202) 555-1000"
|
|
|
|
disabled={true}
|
2018-08-01 16:24:05 +00:00
|
|
|
timespan="Off"
|
2018-07-24 21:38:58 +00:00
|
|
|
i18n={util.i18n}
|
|
|
|
/>
|
2018-07-09 21:29:13 +00:00
|
|
|
</util.ConversationContext>
|
|
|
|
```
|