React Pagination in 7 minutes [ EASY ] | Pagination Tutorial

preview_player
Показать описание

Pagination in React JS with Best and Easy trick. This trick you can apply on any frontend framework like Vue, Angular, React. Copy this crypto coins API for Testing.

🗒️MY FAVORITE TOOLS & GEARS

IMPORTANT LINKS

Social Media Links:

TAGS :
react pagination,pagination,pagination in react js,pagination react,react pagination tutorial,react js pagination,pagination with react js,react js pagination tutorial,pagination reactjs,pagination react js,react pagination with api,react pagination component,react table pagination,react js pagination with api,react pagination with hooks,react js pagination with hooks,react pagination with api call,how to do pagination in react js,react js
Рекомендации по теме
Комментарии
Автор

This was an amazingly clear and concise video. Thank you for this and I hope you make many more in this exact style.

codenamemoe
Автор

Blown away by this, watched a few videos today on how to add some pagination functionality and they all go on for about 30 minutes.

You had it explained in 7, so easy to understand too!

Subbed

goodhandlestaken
Автор

wow, superb explanation. So clean and precise. Thank you much, this helped me a lot 🥳

justyourusualkid
Автор

your channel will blow up buddy, just keep up the awesome work really impressed.
only a few suggestions for future videos,
1. keep them short like how your doing, crazy graphics and long intros just wastes ourr time eh
2. keep repos as up to date as possible
3. do updated versions because a lot of previous viewers will come back to see what youve come up with next
4. if you run out of lessons to teach take requests and set up a telegram or discord to live chat with the people you teach!
thanks for this video super appreciative and always stoked to see a new channel rise up on YT I started watching hashlips when he had 3k subscribers. you got this!

cryptonicchronic
Автор

Absolutely amazing. Detailed and clear. Thanks a lot! Keep up your good work!

MSRahmanSD
Автор

Great buddy you just made this pagination very easy for me
wonderful explanation kudus

gandamraviteja
Автор

Bro you litrally break down those 30min long videos in 5min, that too with more clearer logic explanation than them. You deserve a subscribe 🤝

muzammilsiddiqui
Автор

everything explained just in 7 min so amazingly, love u bro

ZubairKhan-eqoq
Автор

The easiest and the fastest way pagination, also good core concept for beginner thankyou bro, subbed :D

yulius
Автор

Great video! Thank you for being so straightforward and clear

ceciliatalone
Автор

perfect video for pagination so glad i didnt waste time on other videos

suleimanhassan
Автор

Usually I watch multiple videos to understand concepts, your explanation is clear and makes sense. Great editing and format. Cheers NZ

plantleafboy
Автор

Fantastic tutorial! I don't typically comment on videos, but I had to give you credit. This was better than several others I combed through. Was easy to follow, understand and build on top of. Whole video was great, good job!

Tombo
Автор

Man this is a great tutorial. Very helpful and to the point.

manuelpineda
Автор

As a newbie, I was avoiding implementing this feature as a I knew it'd give me a headache. After watching this, I can't wait to get it done today on my personal project. Thank you so much!

nicolasdiaz
Автор

I am from Bangladesh, I follow your channel, and your teaching style is really awesome, I have learned more easies way from your channel videos. We need more videos on javascript and React, Thanks, brother Love from Bangladesh

mamunahmed
Автор

Super tutorial! I will do my best to implement this for my project!

LibriSonoro
Автор

Hi! You've made a big job which helped me a lot. It would be nice if you show us a way to create fancy pagination which looks like 1 2 3 ... 8 ... 18, 19, 20

gyros
Автор

Thankyou so much for explaining why and how things are happening!

MuneebaSaleem-om
Автор

Thank you for a very easy to understand video. I successfully apply this to my project. ❤

I encountered a small issue with scrolling: when I clicked to change the page using pagination, it jumped to the top of the page, while my element was at the bottom. I fixed the problem using the useRef() and useEffect() hooks, so I wanted to share the solution for anyone who might need it:

``` import { useEffect, useRef } from 'react';
// initial setup

const Pagination = ({ ... }) => {

const scrollPosition = useRef(0); // To store the scroll position before page changes

useEffect(() => {
// Restore scroll position after state update
window.scrollTo(0, scrollPosition.current);
}, [currentPage]);

// the rest of the code
```
}

DuyentheNomad