Relative Content

Tag Archive for reactjstypescriptcarousel

Debugging auto scrolling custom carousel in react

I’m trying to create a carousel in react, and build is working perfectly. I am passing a json array of 4 objects. And I expect the carousel to work as below.
show slides 1,2,3 – 2,3,4 – 3,4,1, – 4,1,2 and so on in a circular loop. But currently I see, 1,2,3 – 3,4 – 1 – Blank – 1,2,3.
Not sure of where I’m going wrong. Here is my current code.