mirror of
https://github.com/wassname/react-webpack-template.git
synced 2026-06-28 10:01:11 +08:00
About this folder
This folder will hold all of your flux datasources. You can include them into your components or stores like this:
let react = require('react/addons');
let MySource = require('sources/MyAction');
class MyComponent extends React.Component {
constructor(props) {
super(props);
MySource.getRemoteData();
}
}