├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── renovate.json └── src ├── components ├── drawer.js ├── hamburger.js ├── header.js ├── image.js ├── layout.css ├── layout.js └── seo.js ├── images ├── gatsby-astronaut.png └── gatsby-icon.png ├── pages ├── 404.js ├── index.js └── page-2.js ├── state ├── app.js ├── index.js └── reduxWrapper.js └── style └── theme.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | export { default as wrapRootElement } from './src/state/ReduxWrapper'; 2 | -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- 1 | export { default as wrapRootElement } from './src/state/reduxWrapper'; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/renovate.json -------------------------------------------------------------------------------- /src/components/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/components/drawer.js -------------------------------------------------------------------------------- /src/components/hamburger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/components/hamburger.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/components/image.js -------------------------------------------------------------------------------- /src/components/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/components/layout.css -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/images/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/images/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/page-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/pages/page-2.js -------------------------------------------------------------------------------- /src/state/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/state/app.js -------------------------------------------------------------------------------- /src/state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/state/index.js -------------------------------------------------------------------------------- /src/state/reduxWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/state/reduxWrapper.js -------------------------------------------------------------------------------- /src/style/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkihl/gatsby-starter-redux/HEAD/src/style/theme.js --------------------------------------------------------------------------------