Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ratson/react-typist-loop
Typing animations with React.
https://github.com/ratson/react-typist-loop
animations react typescript typing typing-animation typist
Last synced: 19 days ago
JSON representation
Typing animations with React.
- Host: GitHub
- URL: https://github.com/ratson/react-typist-loop
- Owner: ratson
- Created: 2017-03-06T15:44:48.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-04-19T15:37:58.000Z (over 3 years ago)
- Last Synced: 2024-11-22T00:48:30.392Z (about 1 month ago)
- Topics: animations, react, typescript, typing, typing-animation, typist
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-typist-loop
Typing animations with React.
## Installation
```
npm install react-typist-loop --save
```## Usage
```jsx
import React from 'react'
import Typist from 'react-typist'
import TypistLoop from 'react-typist-loop'const App = () => (
{[
'Hello World',
'Good Morning',
'Bye',
].map(text => {text})}
)
```