mirror of
https://github.com/wassname/react-webpack-template.git
synced 2026-07-10 21:44:02 +08:00
339 B
339 B
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();
}
}