Update formatting for importing functions

This commit is contained in:
John Furrow
2015-11-21 14:32:17 -08:00
parent ca653c21d8
commit 2dd79a3358
12 changed files with 24 additions and 24 deletions

View File

@@ -1,10 +1,10 @@
import { connect } from 'react-redux';
import {connect} from 'react-redux';
import React from 'react';
import Action from '../components/action-bar/Action';
import { addTorrent, startTorrent, stopTorrent } from '../actions/ClientActions';
import { displayModal } from '../actions/UIActions';
import { setTorrentsSort } from '../actions/UIActions';
import {addTorrent, startTorrent, stopTorrent} from '../actions/ClientActions';
import {displayModal} from '../actions/UIActions';
import {setTorrentsSort} from '../actions/UIActions';
import SortDropdown from '../components/action-bar/SortDropdown';
import uiSelector from '../selectors/uiSelector';