New composition area with emoji typeahead

This commit is contained in:
Ken Powers
2019-06-27 16:35:21 -04:00
committed by Scott Nonnenberg
parent e62a1a7812
commit 7b645011c2
95 changed files with 1740 additions and 1293 deletions

View File

@@ -0,0 +1,12 @@
#### Default
```jsx
<util.ConversationContext theme={util.theme}>
<div style={{ minHeight: '500px', paddingTop: '450px' }}>
<CompositionInput
i18n={util.i18n}
onSubmit={s => console.log('onSubmit', s)}
/>
</div>
</util.ConversationContext>
```