├── .eslintrc ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── src ├── components │ ├── FirebaseContext.js │ ├── header.js │ ├── layout.css │ └── layout.js ├── containers │ ├── FetchingExample.js │ ├── SignIn.js │ └── SignOut.js ├── firebase.js ├── images │ └── gatsby-icon.png ├── layouts │ └── index.js └── pages │ ├── 404.js │ ├── index.js │ └── page-2.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/package.json -------------------------------------------------------------------------------- /src/components/FirebaseContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/components/FirebaseContext.js -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/components/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/components/layout.css -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/containers/FetchingExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/containers/FetchingExample.js -------------------------------------------------------------------------------- /src/containers/SignIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/containers/SignIn.js -------------------------------------------------------------------------------- /src/containers/SignOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/containers/SignOut.js -------------------------------------------------------------------------------- /src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/firebase.js -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/page-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/src/pages/page-2.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muhajirdev/gatsby-starter-firebase/HEAD/yarn.lock --------------------------------------------------------------------------------