Skip to content
No results
  • React JS
    • How to
    • Basic
    • Hosting
  • DSA
    • Time Complexity
Tekolio
  • React JS
    • Basic
    • How to
    • Hosting
  • DSA
    • Time Complexity
    • Sorting
    • Practice
      • Arrays
      • Combinatorics
      • Extra
  • OOPS
    • HLD
    • LLD
Tekolio
  • Ateev DuggalAteev Duggal
  • March 13, 2022
  • July 9, 2023

ReactJS Bad Practices and how to avoid them

Some ReactJS Bad Practices include-
1. Using Index as the key in the map function
2. Polluting Render method by using Anonymous functions
3. Using Nested Components
...

Read MoreReactJS Bad Practices and how to avoid them
  • Ateev DuggalAteev Duggal
  • March 7, 2022
  • July 9, 2023

Explaining React JSX in Depth

JSX stands for JavaScript Syntax Extension. It is a syntax for writing JavaScript and HTML together separated by curly braces.

Read MoreExplaining React JSX in Depth
  • Ateev DuggalAteev Duggal
  • March 1, 2022
  • July 9, 2023

How to Make a Table in React using Hooks with Multiple Features

In this blog, we will make a table in React that can add, delete, edit, filter a row with sorting and pagination.

Read MoreHow to Make a Table in React using Hooks with Multiple Features
  • Ateev DuggalAteev Duggal
  • February 28, 2022
  • July 9, 2023

How to make a Pokemon App in React

The Pokemon App in React is one of the most important Apps that one should make as a beginner to test his skills and knowledge of React.

Read MoreHow to make a Pokemon App in React
what are props
  • Ateev DuggalAteev Duggal
  • February 8, 2022
  • July 9, 2023

What are Props in React, and how to use them?

Props in React are the read-only properties that are passed between two components mostly from the parent component to the child component. 

Read MoreWhat are Props in React, and how to use them?
  • Ateev DuggalAteev Duggal
  • February 4, 2022
  • February 14, 2024

How I made my Portfolio in React?

Portfolio is one app that every developer should have as it showcases his work, and portfolio in React will not only showcases your work but is also ...

Read MoreHow I made my Portfolio in React?
  • Ateev DuggalAteev Duggal
  • January 27, 2022
  • July 9, 2023

Explaining useEffect Hook in React

useEffect hook is one of the most used hooks in React and it specializes in performing side effects in Functional Components.

Read MoreExplaining useEffect Hook in React
  • Ateev DuggalAteev Duggal
  • January 20, 2022
  • July 9, 2023

What is the useState hook in React JS?

useState hook in React JS is a Hook that lets us add React state to function components”. It simply means that we can now declare state variables to functional components

Read MoreWhat is the useState hook in React JS?
  • Ateev DuggalAteev Duggal
  • January 19, 2022
  • July 9, 2023

What are hooks in React and What are it’s Rules?

Hooks are an addition to the Functional Components through which we can work with states and other React features without first converting them into classes as it was the ...

Read MoreWhat are hooks in React and What are it’s Rules?
  • Ateev DuggalAteev Duggal
  • January 12, 2022
  • July 9, 2023

How to Dynamically Build a Calculator in React

We all have made calculator in JS, now its time to make it in React but dynamically. In this post we will cover some main but basic concepts of react ...

Read MoreHow to Dynamically Build a Calculator in React
  • Ateev DuggalAteev Duggal
  • January 4, 2022
  • July 9, 2023

How to Host a React App on Netlify with Custom Domain

In this blog, we will see how to host a React App for free using Netlify with a custom domain and a ...

Read MoreHow to Host a React App on Netlify with Custom Domain
  • Ateev DuggalAteev Duggal
  • December 28, 2021
  • July 9, 2023

How to create a Dictionary App in React

In this blog, we will make a Dictionary App in React which will print all the meanings, synonyms, antonyms, and examples of the given word...

Read MoreHow to create a Dictionary App in React
  • Ateev DuggalAteev Duggal
  • December 21, 2021
  • July 9, 2023

How to Host a React App on GitHub Pages with a Custom Domain.

GitHub has its hosting service which is called GitHub Pages. In this blog, we will see how to host a react app on GitHub Pages.

Read MoreHow to Host a React App on GitHub Pages with a Custom Domain.
  • Ateev DuggalAteev Duggal
  • December 16, 2021
  • July 9, 2023

React Virtual DOM – Explained in Simple words

Virtual DOM is just a virtual copy of the actual object that the DOM has created for a specific node and...

Read MoreReact Virtual DOM – Explained in Simple words
  • Ateev DuggalAteev Duggal
  • December 7, 2021
  • July 9, 2023

How to Host React App for free using Vercel CLI

Vercel has another of Hosting an App which is through its CLI. This blog will help you with it

Read MoreHow to Host React App for free using Vercel CLI
React and Vercel
  • Ateev DuggalAteev Duggal
  • November 30, 2021
  • July 9, 2023

How to host a React App using Vercel Dashboard

There are many ways of hosting React App and Vercelis one of them. In this blog, we will see how to deploy...

Read MoreHow to host a React App using Vercel Dashboard
  • Ateev DuggalAteev Duggal
  • November 24, 2021
  • July 9, 2023

10 Ways for Hosting a React App for Free

Here are 10 ways for Hosting a React App is done . Hosting is very essential as it allows..

Read More10 Ways for Hosting a React App for Free
  • Ateev DuggalAteev Duggal
  • November 16, 2021
  • July 9, 2023

How to Create a Random Quote Generator using an API?

Random Quote Generator is one of the basic coding problems and one that marks the beginning of API in the JS journey. This blog contains the step-by-step process...

Read MoreHow to Create a Random Quote Generator using an API?
Slider in React with React Hooks
  • Ateev DuggalAteev Duggal
  • November 9, 2021
  • July 9, 2023

How to Make a Slider in React JS with Hooks?

Slider in React js has become a necessary thing to have on a website. It can be used in any way like an image slide...

Read MoreHow to Make a Slider in React JS with Hooks?
Pagination in React with React-Paginate
  • Ateev DuggalAteev Duggal
  • November 5, 2021
  • July 9, 2023

How to make Pagination in React js using React-Paginate?

Pagination in React js Gives Us A Way To Render Large Pieces Of Data in React By Dividing Them Into Several Pages Of Equal Posts...

Read MoreHow to make Pagination in React js using React-Paginate?
Difference between functional and classcomponents
  • Ateev DuggalAteev Duggal
  • November 2, 2021
  • July 9, 2023

What is the difference between Functional and Class Components?

Functional Components are JavaScript functions that are usually created with the help of arrow functions...

Read MoreWhat is the difference between Functional and Class Components?
Prev1 2 3Next
No more posts to load

Copyright © 2025 Tekolio Technologies

  • Contact Us
  • Terms and Conditions
  • Privacy Policy