mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 14:15:15 +00:00
Move from Redux to vanilla Flux
This commit is contained in:
@@ -1,26 +1,21 @@
|
||||
import {connect} from 'react-redux';
|
||||
import React from 'react';
|
||||
|
||||
import ActionBar from '../containers/ActionBar';
|
||||
import ActionBar from '../components/action-bar/ActionBar';
|
||||
import Modals from '../components/modals/Modals';
|
||||
import Sidebar from './Sidebar';
|
||||
import rootSelector from '../selectors/rootSelector';
|
||||
import TorrentList from '../containers/TorrentList';
|
||||
import TorrentListHeader from '../components/torrent-list/TorrentListHeader';
|
||||
import Sidebar from '../components/sidebar/Sidebar';
|
||||
import TorrentListContainer from '../components/torrent-list/TorrentListContainer';
|
||||
|
||||
export default class FloodApp extends React.Component {
|
||||
|
||||
render() {
|
||||
return (
|
||||
<div className="flood">
|
||||
<Sidebar />
|
||||
<main className="content">
|
||||
<ActionBar />
|
||||
<TorrentList />
|
||||
<TorrentListContainer />
|
||||
</main>
|
||||
<Modals />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user