Category: react
Custom React Hooks with GraphQL
Introduction to React Hooks Reusable stateful logic functions can be called as Hooks that is introduced by React in version 16.8.0 . Main purpose of hooks is to simplify complex components to make them easier to test and reuse, readable and maintainable Introduction to GraphQL GraphQL is a data query language for APIs it has …
Using Redux in Sample React Native app
What is Redux? Redux is a predictable state manager, what predictable state manager does is that it records the state changes by describing as “Actions” and replay it later making state management predictable. In other words, Redux is a predictable state manager which helps us to write applications that behave consisting which run in different …
React Hooks- A glance into using react hooks
Introduction React hooks are newly introduced as a means to reduce code and as a means of reducing the use of classes in react. Hooks are introduced to the version 16.8.0, so here we will be considering pros and cons of React hooks. What is React Hooks and why? Hooks are functions that let you …
Integrating a Bootstrap Template to React
Introduction Creating a react app from scratch can be a real pain if you are new to react and when your implementing a website it is a best practice to breakdown the specific template to components, especially the part that you have to use over and over again in every page you implement, Navbar and …