Rearrange app directory structure

This commit is contained in:
John Furrow
2015-11-07 23:13:21 -08:00
parent 072c000236
commit eb1ea0806d
91 changed files with 488 additions and 2975 deletions

View File

@@ -0,0 +1,20 @@
import { createSelector } from 'reselect';
import clientSelector from './clientSelector';
import torrentSelector from './torrentSelector';
import uiSelector from './uiSelector';
const rootSelector = createSelector(
clientSelector,
torrentSelector,
uiSelector,
(client, torrents, ui) => {
return {
client,
torrents,
ui
};
}
);
export default rootSelector;