React

code

React Native vs React - Difference between React Native and React

React is designed primarily for web applications, whereas React Native was conceived for the intended purpose of cross-platform mobile development. React Native was explicitly designed for building responsive mobile UI. React has no dependency on a particular platform, meaning it can be executed across all kinds of platforms.

Read Full Post →
code

Why you should simplify React states

Simplifying React states will not only give your application a huge performance boost but it is also important for your application to work efficiently. Read this blog post to find out more.

Read Full Post →
code

How to write a loop inside JSX React

I was recently looking at stackoverflow trends and apparently this is one of the most active questions at the time of writing this blog post. Thought of doing my bit on helping the world :)

Read Full Post →
code

Best way to style components in React | 2021

Styled Components are one of the new ways to use CSS in modern JavaScript. It is the meant to be a successor of CSS Modules, a way to write CSS that's scoped to a single component, and not leak to any other element in the page.

Read Full Post →