We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
Typing animations with React.
npm install react-typist-loop --save
importReactfrom'react'importTypistfrom'react-typist'importTypistLoopfrom'react-typist-loop'constApp=()=>(<TypistLoopinterval={3000}>{['Hello World','Good Morning','Bye',].map(text=><Typistkey={text}startDelay={1000}>{text}</Typist>)}</TypistLoop>)