Browse Source

Added more Redux Scaffolding as well as Materialize CSS

master
Unknown 6 years ago
parent
commit
575e9d7d1b
4 changed files with 9399 additions and 0 deletions
  1. +3
    -0
      googletrendsgame/src/actions/actionTypes.js
  2. +0
    -0
      googletrendsgame/src/api.js
  3. +9389
    -0
      googletrendsgame/src/css/materialize.css
  4. +7
    -0
      googletrendsgame/src/reducers/rootreducer.js

+ 3
- 0
googletrendsgame/src/actions/actionTypes.js View File

@ -0,0 +1,3 @@
// This file will house all constants for actionTypes that will
// be used across the project. If you're adding an action type,
// add it here and reference it from here.

+ 0
- 0
googletrendsgame/src/api.js View File


+ 9389
- 0
googletrendsgame/src/css/materialize.css
File diff suppressed because it is too large
View File


+ 7
- 0
googletrendsgame/src/reducers/rootreducer.js View File

@ -0,0 +1,7 @@
// This is the root reducer for redux. Whenever you add a new
// reducer, make sure to add it here as well.
export default {
// Key-value pairs go here
}

Loading…
Cancel
Save