1.1.0 • Published 6 years ago

typing-effect-react v1.1.0

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

Typing Effect in React

Efficient & Lightweight typing effect made using requestAnimationFrame

Example

Installation

npm install --save typing-effect-react

Basic Usage

import React, { Component } from "react";
import TypingEffect from "typing-effect-react";

class YourComponent extends Component {
  render() {
    return <TypingEffect data={["Hello world :)", "Hello again :)"]} />;
  }
}