├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── content ├── assets │ ├── gatsby-icon.png │ ├── profile-pic.jpg │ └── profile-pic.png └── blog │ ├── Imperative vs Declarative programming │ └── index.md │ ├── axios │ └── index.md │ ├── component-composition │ └── index.md │ ├── component-life-cycle │ └── index.md │ ├── context-api │ └── index.md │ ├── flux │ └── index.md │ ├── function-or-class │ └── index.md │ ├── history-of-react │ └── index.md │ ├── hoc │ └── index.md │ ├── jsx │ └── index.md │ ├── mixins │ └── index.md │ ├── popular │ └── index.md │ ├── react-and-firebase │ └── index.md │ ├── react-hooks │ └── index.md │ ├── real-world-example │ └── index.md │ ├── routing │ └── index.md │ ├── state-vs-props │ └── index.md │ ├── topics │ └── index.md │ ├── unidirectional-data-flow │ └── index.md │ └── use-effect │ └── index.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── package.json ├── src ├── components │ ├── bio.js │ ├── layout.js │ └── seo.js ├── pages │ ├── 404.js │ └── index.js ├── templates │ └── blog-post.js └── utils │ └── typography.js ├── static ├── favicon.ico └── robots.txt └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/README.md -------------------------------------------------------------------------------- /content/assets/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/assets/gatsby-icon.png -------------------------------------------------------------------------------- /content/assets/profile-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/assets/profile-pic.jpg -------------------------------------------------------------------------------- /content/assets/profile-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/assets/profile-pic.png -------------------------------------------------------------------------------- /content/blog/Imperative vs Declarative programming/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/Imperative vs Declarative programming/index.md -------------------------------------------------------------------------------- /content/blog/axios/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/axios/index.md -------------------------------------------------------------------------------- /content/blog/component-composition/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/component-composition/index.md -------------------------------------------------------------------------------- /content/blog/component-life-cycle/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/component-life-cycle/index.md -------------------------------------------------------------------------------- /content/blog/context-api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/context-api/index.md -------------------------------------------------------------------------------- /content/blog/flux/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/flux/index.md -------------------------------------------------------------------------------- /content/blog/function-or-class/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/function-or-class/index.md -------------------------------------------------------------------------------- /content/blog/history-of-react/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/history-of-react/index.md -------------------------------------------------------------------------------- /content/blog/hoc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/hoc/index.md -------------------------------------------------------------------------------- /content/blog/jsx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/jsx/index.md -------------------------------------------------------------------------------- /content/blog/mixins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/mixins/index.md -------------------------------------------------------------------------------- /content/blog/popular/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/popular/index.md -------------------------------------------------------------------------------- /content/blog/react-and-firebase/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/react-and-firebase/index.md -------------------------------------------------------------------------------- /content/blog/react-hooks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/react-hooks/index.md -------------------------------------------------------------------------------- /content/blog/real-world-example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/real-world-example/index.md -------------------------------------------------------------------------------- /content/blog/routing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/routing/index.md -------------------------------------------------------------------------------- /content/blog/state-vs-props/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/state-vs-props/index.md -------------------------------------------------------------------------------- /content/blog/topics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/topics/index.md -------------------------------------------------------------------------------- /content/blog/unidirectional-data-flow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/unidirectional-data-flow/index.md -------------------------------------------------------------------------------- /content/blog/use-effect/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/content/blog/use-effect/index.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/package.json -------------------------------------------------------------------------------- /src/components/bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/src/components/bio.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/src/components/seo.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/templates/blog-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/src/templates/blog-post.js -------------------------------------------------------------------------------- /src/utils/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/src/utils/typography.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KirankumarAmbati/I-can-not-REACT/HEAD/yarn.lock --------------------------------------------------------------------------------