react-typist-loop

Typing animations with React.

Usage no npm install needed!

<script type="module">
  import reactTypistLoop from 'https://cdn.skypack.dev/react-typist-loop';
</script>

README

react-typist-loop

Typing animations with React.

Installation

npm install react-typist-loop --save

Usage

import React from 'react'
import Typist from 'react-typist'
import TypistLoop from 'react-typist-loop'

const App = () => (
  <TypistLoop interval={3000}>
    {[
      'Hello World',
      'Good Morning',
      'Bye',
    ].map(text => <Typist key={text} startDelay={1000}>{text}</Typist>)}
  </TypistLoop>
)