Created
June 9, 2017 18:17
-
-
Save panvourtsis/6bad5b1a22ec9bb61f03f5e5d9a30c78 to your computer and use it in GitHub Desktop.
This is a small example of the app.js. The actuall app is going to have more config. You will see some functions missing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ngRedux from "ng-redux"; | |
import thunk from "redux-thunk"; | |
import {RootReducer} from "./Reducers"; | |
angular | |
.module( | |
"funkmartini", | |
[ | |
..., | |
ngRedux, | |
..... | |
] | |
) | |
.config(configApp) | |
.run(runApp); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment