Format all source code using Prettier

This commit is contained in:
Daniel Gasienica 2018-04-27 17:25:04 -04:00
parent b4dee3f30b
commit 1dd87ad197
149 changed files with 17847 additions and 15439 deletions

View file

@ -1,7 +1,6 @@
import React from 'react';
import classnames from 'classnames';
interface Props {
/**
* Corresponds to the theme setting in the app, and the class added to the root element.
@ -21,10 +20,8 @@ export class ConversationContext extends React.Component<Props, {}> {
return (
<div className={theme || 'android'}>
<div className={classnames('conversation', type || 'private')}>
<div className="discussion-container" style={{padding: '0.5em'}}>
<ul className="message-list">
{this.props.children}
</ul>
<div className="discussion-container" style={{ padding: '0.5em' }}>
<ul className="message-list">{this.props.children}</ul>
</div>
</div>
</div>