changed structure - now no longer using flux-react but flux and react separately

This commit is contained in:
Senad Uka
2014-12-21 09:05:40 +01:00
parent 8106a0f375
commit 7a7b14fba3
15 changed files with 91 additions and 84 deletions

View File

@@ -0,0 +1,12 @@
var React = require('react');
var ChooseFile = React.createClass({
render: function() {
return (
<button className="red-button">ChooseFile</button>
);
}
});
module.exports = ChooseFile;

View File

@@ -0,0 +1,17 @@
/** @jsx React.DOM */
var React = require('react');
var ChooseFile = require('./ChooseFile.react');
var SpreadSheet = React.createClass({
render: function() {
return (
<div className="spreadsheet">
<ChooseFile />
</div>
);
}
});
module.exports = SpreadSheet;