When animating elements of an array using a loop, startDelay works only for the first element. How can it work for each element of the loop?
<Typed
strings={words}
typeSpeed={100}
backSpeed={60}
backDelay={500}
startDelay={300}
loop >
<span style={{ color: "red", fontSize: "3.5rem" }} />
</Typed>
When animating elements of an array using a loop, startDelay works only for the first element. How can it work for each element of the loop?