Move from Redux to vanilla Flux

This commit is contained in:
John Furrow
2015-12-14 21:30:19 -08:00
parent 86c5886ad2
commit 81aa20e60d
23 changed files with 999 additions and 1064 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
export default class TorrentList extends React.Component {
render() {
return (
<div>Loading</div>
);
}
}