Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 585 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 585 Bytes

Typing Effect in React

Efficient & Lightweight typing effect made using requestAnimationFrame

Example

Typing effect example in action

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 :)"]} />;
  }
}