mirror of
https://github.com/wassname/react-webpack-template.git
synced 2026-06-27 19:48:31 +08:00
About this folder
This folder will hold all of your flux stores. You can include them into your components like this:
let react = require('react/addons');
let MyStore = require('stores/MyStore');
class MyComponent extends React.Component {
constructor(props) {
super(props);
MyStore.doSomething();
}
}