1.0.0 • Published 3 years ago

react-typist-loop v1.0.0

Weekly downloads
283
License
MIT
Repository
github
Last release
3 years ago

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>
)