Posts Categorized:
React

How to Use CodePush in React Native

How to Use CodePush in React Native

Introduction So you’ve got a React Native application and things are going well: you write code and when you’re ready to release to your customers, you create your Google Play and App Store builds, fill in all the information, submit your builds and now you wait for...
What is a higher-order component in React?

What is a higher-order component in React?

A higher-order component is a technique that is available to us because of React’s compositional nature. Specifically, a higher-order component is a function that takes a component as a parameter and returns a new component. const EnhancedComponent =...
What are React Fragments?

What are React Fragments?

After reading this post you will know all the ins and outs of React Fragments, how to use them and why they are useful. I will also give you some use case examples along with code snippets. React fragments allow you to return multiple elements within a component. You...
Conditional Rendering in React

Conditional Rendering in React

Conditional rendering is showing content dynamically based on values that can change over time. This can be done inline in the template using interpolation with conditionals, or by returning a component or JSX from a function. Using these methods dynamic content can...