We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bc35ed commit e1532f6Copy full SHA for e1532f6
.gitignore
@@ -39,3 +39,6 @@ jspm_packages
39
40
# Optional REPL history
41
.node_repl_history
42
+
43
+# Video files
44
+*.mp4
app/store/configurePlayerStore.js
@@ -3,6 +3,6 @@
3
import { createStore } from 'redux';
4
import { playbackReducer } from '../reducers/playback';
5
6
-export default function () {
+export default function configureStore() {
7
return createStore(playbackReducer);
8
}
0 commit comments