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
@@ -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';
+2 -2
View File
@@ -1,8 +1,8 @@
import { connect } from 'react-redux';
import {connect} from 'react-redux';
import React from 'react';
import ClientStats from '../components/sidebar/ClientStats';
import { setTorrentsFilter, setTorrentsSearch } from '../actions/UIActions';
import {setTorrentsFilter, setTorrentsSearch} from '../actions/UIActions';
import StatusFilters from '../components/sidebar/StatusFilters';
import SearchBox from '../components/sidebar/SearchBox';
import UIActions from '../actions/UIActions';