react-material-dashboard
Version:
Material design admin dashboard powered with React
15 lines (13 loc) • 381 B
Markdown
# About this folder
This folder will hold all of your **flux** actions if you are using flux.
You can include actions into your components or stores like this:
```javascript
let react = require('react/addons');
let MyAction = require('actions/MyAction');
class MyComponent extends React.Component {
constructor(props) {
super(props);
MyAction.exampleMethod();
}
}
```