Applied autofix for object-curly-newline rule.

This commit is contained in:
Filip Barl
2017-10-17 19:07:14 +02:00
parent d9a8afe81d
commit 2fcbdb7e16
45 changed files with 209 additions and 78 deletions
+3 -1
View File
@@ -5,7 +5,9 @@ import classNames from 'classnames';
import Tooltip from './tooltip';
const Plugin = ({id, label, description, status}) => {
const Plugin = ({
id, label, description, status
}) => {
const error = status !== 'ok';
const className = classNames({ error });
const tip = (<span>Description: {description}<br />Status: {status}</span>);