Added base webpack configuration and needed shellscripts.

This commit is contained in:
Chris
2015-08-27 17:07:53 +02:00
parent dce9142863
commit 5e32fef364
13 changed files with 262 additions and 9 deletions
+14
View File
@@ -0,0 +1,14 @@
# 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();
}
}
```