Custom React Hook to help you create a typing text effect in you app.
npm install --save use-typing-hook
import React, { Component } from 'react'
import useTyping from 'use-typing-hook'
const Example = () => {
// useTyping accepts three parameter
// 1. Text
// 2. Minimum delay timing
// 3. Maximum delay timing
const typingText = useTyping("Hello useTyping!", 200, 400)
return (
<div>{typingText}</div>
)
}
MIT © nnnkit