├── .editorconfig ├── .gitignore ├── README.md ├── package.json ├── pages ├── _app.js ├── _document.js └── index.js ├── src ├── actions │ └── index.js ├── constants │ └── index.js ├── reducers │ └── index.js ├── store │ └── index.js └── utils │ └── theme.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/pages/index.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/utils/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/src/utils/theme.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaopaulomoraes/nextjs-with-redux-and-material-ui/HEAD/yarn.lock --------------------------------------------------------------------------------